From a896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Wed, 15 Feb 2017 17:40:40 +0000 Subject: add arc4random_addrandom sysdep; next batch of types changes. The library isn't supposed to be functional yet: there are still a lot of type mismatches. --- src/libstddjb/bitarray_firstclear_skip.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/libstddjb/bitarray_firstclear_skip.c') diff --git a/src/libstddjb/bitarray_firstclear_skip.c b/src/libstddjb/bitarray_firstclear_skip.c index 8a32dba..ef49ee0 100644 --- a/src/libstddjb/bitarray_firstclear_skip.c +++ b/src/libstddjb/bitarray_firstclear_skip.c @@ -1,11 +1,12 @@ /* ISC license. */ +#include #include -unsigned int bitarray_firstclear_skip (register unsigned char const *s, unsigned int max, unsigned int skip) +size_t bitarray_firstclear_skip (register unsigned char const *s, size_t max, size_t skip) { - register unsigned int i = bitarray_div8(skip) ; - register unsigned int j = i << 3 > max ? max : i << 3 ; + register size_t i = bitarray_div8(skip) ; + register size_t j = i << 3 > max ? max : i << 3 ; if (i && s[i-1] != 0xffU) { while ((skip < j) && bitarray_peek(s, skip)) skip++ ; -- cgit v1.3.1