Module Name: src
Committed By: christos
Date: Fri Nov 20 20:24:50 UTC 2015
Modified Files:
src/include: bitstring.h
Log Message:
update to size_t
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/include/bitstring.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/include/bitstring.h
diff -u src/include/bitstring.h:1.9 src/include/bitstring.h:1.10
--- src/include/bitstring.h:1.9 Thu May 6 14:54:22 2010
+++ src/include/bitstring.h Fri Nov 20 15:24:49 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: bitstring.h,v 1.9 2010/05/06 18:54:22 christos Exp $ */
+/* $NetBSD: bitstring.h,v 1.10 2015/11/20 20:24:49 christos Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -90,7 +90,7 @@ typedef unsigned char bitstr_t;
/* clear bits start ... stop in bitstring */
#define bit_nclear(name, start, stop) do { \
bitstr_t *_name = name; \
- int _start = start, _stop = stop; \
+ size_t _start = start, _stop = stop; \
while (_start <= _stop) { \
bit_clear(_name, _start); \
_start++; \
@@ -100,7 +100,7 @@ typedef unsigned char bitstr_t;
/* set bits start ... stop in bitstring */
#define bit_nset(name, start, stop) do { \
bitstr_t *_name = name; \
- int _start = start, _stop = stop; \
+ size_t _start = start, _stop = stop; \
while (_start <= _stop) { \
bit_set(_name, _start); \
_start++; \
@@ -110,7 +110,7 @@ typedef unsigned char bitstr_t;
/* find first bit clear in name */
#define bit_ffc(name, nbits, value) do { \
bitstr_t *_name = name; \
- int _bit, _nbits = nbits, _value = -1; \
+ size_t _bit, _nbits = nbits, _value = -1; \
for (_bit = 0; _bit < _nbits; ++_bit) \
if (!bit_test(_name, _bit)) { \
_value = _bit; \
@@ -122,7 +122,7 @@ typedef unsigned char bitstr_t;
/* find first bit set in name */
#define bit_ffs(name, nbits, value) do { \
bitstr_t *_name = name; \
- int _bit, _nbits = nbits, _value = -1; \
+ size_t _bit, _nbits = nbits, _value = -1; \
for (_bit = 0; _bit < _nbits; ++_bit) \
if (bit_test(_name, _bit)) { \
_value = _bit; \