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:
Eric van Gyzen 2016-07-29 21:12:48 +00:00
parent 4e9ac06d0d
commit 71aa6fbfe9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=303519
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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