Module Name: src
Committed By: riastradh
Date: Fri Nov 21 15:42:57 UTC 2014
Modified Files:
src/share/man/man9: pserialize.9
Log Message:
Fix typo: pserialize_read_exit(s), not s = pserialize_read_exit().
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/share/man/man9/pserialize.9
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/man/man9/pserialize.9
diff -u src/share/man/man9/pserialize.9:1.5 src/share/man/man9/pserialize.9:1.6
--- src/share/man/man9/pserialize.9:1.5 Fri Nov 21 15:40:38 2014
+++ src/share/man/man9/pserialize.9 Fri Nov 21 15:42:57 2014
@@ -1,4 +1,4 @@
-.\" $NetBSD: pserialize.9,v 1.5 2014/11/21 15:40:38 riastradh Exp $
+.\" $NetBSD: pserialize.9,v 1.6 2014/11/21 15:42:57 riastradh Exp $
.\"
.\" Copyright (c) 2011 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -119,7 +119,7 @@ Find a frotz, as a reader:
break;
}
}
- s = pserialize_read_exit();
+ pserialize_read_exit(s);
return error;
.Ed