recvmmsg.2, sendmmsg.2: Type fixes in SYNOPSIS

[mtk: The raw system calls use "unsigned int", but the glibc
wrappers have "int" for the 'flags' argument.]

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Elliot Hughes 2017-11-02 07:49:07 +01:00 committed by Michael Kerrisk
parent 74f254908f
commit 0e1a31ea79
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ recvmmsg \- receive multiple messages on a socket
.PP
.BI "int recvmmsg(int " sockfd ", struct mmsghdr *" msgvec \
", unsigned int " vlen ","
.BI " unsigned int " flags ", struct timespec *" timeout ");"
.BI " int " flags ", struct timespec *" timeout ");"
.fi
.SH DESCRIPTION
The

View File

@ -35,7 +35,7 @@ sendmmsg \- send multiple messages on a socket
.PP
.BI "int sendmmsg(int " sockfd ", struct mmsghdr *" msgvec \
", unsigned int " vlen ","
.BI " unsigned int " flags ");"
.BI " int " flags ");"
.fi
.SH DESCRIPTION
The