diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2023-02-23 21:22:12 +0000 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2023-02-23 21:22:12 +0000 |
commit | 4e696aff69090da046817a6339d01f4675728b95 (patch) | |
tree | 829caa95e81084056f6f31330b98ce24b9107662 | |
parent | 0455b90beeddb636b0644c5d47ef80ffb3e4b4c7 (diff) | |
download | src-4e696aff69090da046817a6339d01f4675728b95.tar.gz src-4e696aff69090da046817a6339d01f4675728b95.zip |
iconvlist(3): fix count argument type
count is just an unsigned int, not a pointer.
Sponsored by: Klara, Inc.
-rw-r--r-- | lib/libc/iconv/iconvlist.3 | 4 |
1 files 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 |