Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Feb 2023 21:23:16 GMT
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 4e696aff6909 - main - iconvlist(3): fix count argument type
Message-ID:  <202302232123.31NLNGi6078012@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kevans:

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

commit 4e696aff69090da046817a6339d01f4675728b95
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2023-02-23 21:22:12 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302232123.31NLNGi6078012>