Fix two return types in the cpuset(9) and bitset(9) man pages
The *_FFS() and *_COUNT() functions return int, not size_t. MFC after: 3 days Sponsored by: Dell Inc.
This commit is contained in:
parent
4e9ac06d0d
commit
71aa6fbfe9
@ -24,7 +24,7 @@
|
||||
.\"
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd October 20, 2015
|
||||
.Dd July 29, 2016
|
||||
.Dt BITSET 9
|
||||
.Os
|
||||
.Sh NAME
|
||||
@ -77,9 +77,9 @@
|
||||
.Fn BIT_EMPTY "const SETSIZE" "struct STRUCTNAME *bitset"
|
||||
.Ft bool
|
||||
.Fn BIT_ISFULLSET "const SETSIZE" "struct STRUCTNAME *bitset"
|
||||
.Ft size_t
|
||||
.Ft int
|
||||
.Fn BIT_FFS "const SETSIZE" "struct STRUCTNAME *bitset"
|
||||
.Ft size_t
|
||||
.Ft int
|
||||
.Fn BIT_COUNT "const SETSIZE" "struct STRUCTNAME *bitset"
|
||||
.\"
|
||||
.Ft bool
|
||||
|
@ -24,7 +24,7 @@
|
||||
.\"
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd October 20, 2015
|
||||
.Dd July 29, 2016
|
||||
.Dt CPUSET 9
|
||||
.Os
|
||||
.Sh NAME
|
||||
@ -75,9 +75,9 @@
|
||||
.Fn CPU_EMPTY "cpuset_t *cpuset"
|
||||
.Ft bool
|
||||
.Fn CPU_ISFULLSET "cpuset_t *cpuset"
|
||||
.Ft size_t
|
||||
.Ft int
|
||||
.Fn CPU_FFS "cpuset_t *cpuset"
|
||||
.Ft size_t
|
||||
.Ft int
|
||||
.Fn CPU_COUNT "cpuset_t *cpuset"
|
||||
.\"
|
||||
.Ft bool
|
||||
|
Loading…
Reference in New Issue
Block a user