git: cda391fe2207 - stable/13 - iconvlist(3): fix count argument type

From: Kyle Evans <kevans_at_FreeBSD.org>
Date: Fri, 17 Mar 2023 05:48:37 UTC
The branch stable/13 has been updated by kevans:

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

commit cda391fe2207e7c4a8d91e88713c58bea362d828
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2023-02-23 21:22:12 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2023-03-17 05:01:45 +0000

    iconvlist(3): fix count argument type
    
    count is just an unsigned int, not a pointer.
    
    Sponsored by:   Klara, Inc.
    
    (cherry picked from commit 4e696aff69090da046817a6339d01f4675728b95)
---
 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