git: e2cbfa1f5045 - stable/14 - munmap.2: Remove EINVAL for negative len

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Mon, 20 Jan 2025 14:26:54 UTC
The branch stable/14 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=e2cbfa1f5045019d34eb0091db7755c151ea06d5

commit e2cbfa1f5045019d34eb0091db7755c151ea06d5
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-01-15 21:44:31 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-01-20 14:25:14 +0000

    munmap.2: Remove EINVAL for negative len
    
    len is unsigned (it is size_t), so cannot be negative.
    
    Sponsored by:   The FreeBSD Foundation
    
    (cherry picked from commit fab411c4fd5224e3dd44e0eb288d60b27480e2d1)
---
 lib/libc/sys/munmap.2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libc/sys/munmap.2 b/lib/libc/sys/munmap.2
index cf8d9ec22b1c..2411ccb3b0db 100644
--- a/lib/libc/sys/munmap.2
+++ b/lib/libc/sys/munmap.2
@@ -56,7 +56,7 @@ will fail if:
 .It Bq Er EINVAL
 The
 .Fa len
-argument was zero or negative, or
+argument was zero, or
 some part of the region being unmapped is outside the
 valid address range for a process.
 .El