remap_file_pages.2: Fix prototype

The pgoff argument has type size_t, not ssize_t (and in the kernel it
is unsigned long).

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Rasmus Villemoes 2014-05-20 01:02:09 +02:00 committed by Michael Kerrisk
parent 2cbf26f13e
commit aff9c3077a
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ remap_file_pages \- create a nonlinear file mapping
.B #include <sys/mman.h>
.sp
.BI "int remap_file_pages(void *" addr ", size_t " size ", int " prot ,
.BI " ssize_t " pgoff ", int " flags );
.BI " size_t " pgoff ", int " flags );
.fi
.SH DESCRIPTION
The