The branch main has been updated by kevans:

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

commit 4e696aff69090da046817a6339d01f4675728b95
Author:     Kyle Evans <[email protected]>
AuthorDate: 2023-02-23 21:22:12 +0000
Commit:     Kyle Evans <[email protected]>
CommitDate: 2023-02-23 21:22:12 +0000

    iconvlist(3): fix count argument type
    
    count is just an unsigned int, not a pointer.
    
    Sponsored by:   Klara, Inc.
---
 lib/libc/iconv/iconvlist.3 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/libc/iconv/iconvlist.3 b/lib/libc/iconv/iconvlist.3
index b1a6e0564341..2e9f585534c6 100644
--- a/lib/libc/iconv/iconvlist.3
+++ b/lib/libc/iconv/iconvlist.3
@@ -34,7 +34,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd October 20, 2009
+.Dd February 23, 2023
 .Dt ICONVLIST 3
 .Os
 .Sh NAME
@@ -47,7 +47,7 @@
 .In iconv.h
 .Ft void
 .Fo iconvlist
-.Fa "int \*[lp]*do_one\*[rp]\*[lp]unsigned int *count, const char * const 
*names, void *arg\*[rp]"
+.Fa "int \*[lp]*do_one\*[rp]\*[lp]unsigned int count, const char * const 
*names, void *arg\*[rp]"
 .Fa "void *arg"
 .Fc
 .Sh DESCRIPTION

Reply via email to