mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
iconvlist(3): fix count argument type
count is just an unsigned int, not a pointer. Sponsored by: Klara, Inc.
This commit is contained in:
parent
0455b90bee
commit
4e696aff69
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue