All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vmsplice.2: SYNOPSIS: Fix prototype parameter type
@ 2021-02-15 13:15 Alejandro Colomar
  2021-02-15 20:11 ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 2+ messages in thread
From: Alejandro Colomar @ 2021-02-15 13:15 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Alejandro Colomar, linux-man

The 3rd parameter of vmsplice() uses 'size_t' in glibc.  Fix it.

......

.../gnu/glibc$ grep_glibc_prototype vmsplice
sysdeps/unix/sysv/linux/bits/fcntl-linux.h:391:
extern __ssize_t vmsplice (int __fdout, const struct iovec *__iov,
			   size_t __count, unsigned int __flags);
.../gnu/glibc$

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 man2/vmsplice.2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man2/vmsplice.2 b/man2/vmsplice.2
index 649fe0ca7..714ad565f 100644
--- a/man2/vmsplice.2
+++ b/man2/vmsplice.2
@@ -33,7 +33,7 @@ vmsplice \- splice user pages to/from a pipe
 .B #include <sys/uio.h>
 .PP
 .BI "ssize_t vmsplice(int " fd ", const struct iovec *" iov ,
-.BI "                 unsigned long " nr_segs ", unsigned int " flags );
+.BI "                 size_t " nr_segs ", unsigned int " flags );
 .fi
 .\" Return type was long before glibc 2.7
 .SH DESCRIPTION
-- 
2.30.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] vmsplice.2: SYNOPSIS: Fix prototype parameter type
  2021-02-15 13:15 [PATCH] vmsplice.2: SYNOPSIS: Fix prototype parameter type Alejandro Colomar
@ 2021-02-15 20:11 ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2021-02-15 20:11 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

Hi ALex,

On 2/15/21 2:15 PM, Alejandro Colomar wrote:
> The 3rd parameter of vmsplice() uses 'size_t' in glibc.  Fix it.
> 
> ......
> 
> .../gnu/glibc$ grep_glibc_prototype vmsplice
> sysdeps/unix/sysv/linux/bits/fcntl-linux.h:391:
> extern __ssize_t vmsplice (int __fdout, const struct iovec *__iov,
> 			   size_t __count, unsigned int __flags);
> .../gnu/glibc$
> 
> Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>


Thanks! Patch applied.

Cheers,

Michael


> ---
>  man2/vmsplice.2 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man2/vmsplice.2 b/man2/vmsplice.2
> index 649fe0ca7..714ad565f 100644
> --- a/man2/vmsplice.2
> +++ b/man2/vmsplice.2
> @@ -33,7 +33,7 @@ vmsplice \- splice user pages to/from a pipe
>  .B #include <sys/uio.h>
>  .PP
>  .BI "ssize_t vmsplice(int " fd ", const struct iovec *" iov ,
> -.BI "                 unsigned long " nr_segs ", unsigned int " flags );
> +.BI "                 size_t " nr_segs ", unsigned int " flags );
>  .fi
>  .\" Return type was long before glibc 2.7
>  .SH DESCRIPTION
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-02-15 20:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-15 13:15 [PATCH] vmsplice.2: SYNOPSIS: Fix prototype parameter type Alejandro Colomar
2021-02-15 20:11 ` Michael Kerrisk (man-pages)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.