Module Name:    src
Committed By:   njoly
Date:           Fri May 30 16:11:01 UTC 2014

Modified Files:
        src/lib/libc/sys: munmap.2

Log Message:
len argument is of unsigned type (size_t) and thus cannot be negative;
remove corresponding statement in ERRORS.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/lib/libc/sys/munmap.2

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/sys/munmap.2
diff -u src/lib/libc/sys/munmap.2:1.20 src/lib/libc/sys/munmap.2:1.21
--- src/lib/libc/sys/munmap.2:1.20	Sat Oct 15 21:35:50 2011
+++ src/lib/libc/sys/munmap.2	Fri May 30 16:11:01 2014
@@ -1,4 +1,4 @@
-.\"	$NetBSD: munmap.2,v 1.20 2011/10/15 21:35:50 rmind Exp $
+.\"	$NetBSD: munmap.2,v 1.21 2014/05/30 16:11:01 njoly Exp $
 .\"
 .\" Copyright (c) 1991, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -62,9 +62,7 @@ will fail if:
 .It Bq Er EINVAL
 The
 .Fa addr
-parameter was not page aligned, the
-.Fa len
-parameter was negative, or
+parameter was not page aligned, or
 some part of the region being unmapped is outside the
 valid address range for a process.
 .El

Reply via email to