Module Name:    src
Committed By:   christos
Date:           Fri Nov 20 20:27:20 UTC 2015

Modified Files:
        src/include: bitstring.h

Log Message:
keep value as an int.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 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.10 src/include/bitstring.h:1.11
--- src/include/bitstring.h:1.10	Fri Nov 20 15:24:49 2015
+++ src/include/bitstring.h	Fri Nov 20 15:27:20 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: bitstring.h,v 1.10 2015/11/20 20:24:49 christos Exp $	*/
+/*	$NetBSD: bitstring.h,v 1.11 2015/11/20 20:27:20 christos Exp $	*/
 
 /*
  * Copyright (c) 1989, 1993
@@ -110,7 +110,8 @@ typedef	unsigned char bitstr_t;
 				/* find first bit clear in name */
 #define	bit_ffc(name, nbits, value) do { \
 	bitstr_t *_name = name; \
-	size_t _bit, _nbits = nbits, _value = -1; \
+	size_t _bit, _nbits = nbits; \
+	int _value = -1; \
 	for (_bit = 0; _bit < _nbits; ++_bit) \
 		if (!bit_test(_name, _bit)) { \
 			_value = _bit; \
@@ -122,7 +123,8 @@ typedef	unsigned char bitstr_t;
 				/* find first bit set in name */
 #define	bit_ffs(name, nbits, value) do { \
 	bitstr_t *_name = name; \
-	size_t _bit, _nbits = nbits, _value = -1; \
+	size_t _bit, _nbits = nbits; \
+	int _value = -1; \
 	for (_bit = 0; _bit < _nbits; ++_bit) \
 		if (bit_test(_name, _bit)) { \
 			_value = _bit; \

Reply via email to