Module Name: src
Committed By: christos
Date: Fri Nov 20 20:37:08 UTC 2015
Modified Files:
src/include: bitstring.h
Log Message:
add some const
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 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.11 src/include/bitstring.h:1.12
--- src/include/bitstring.h:1.11 Fri Nov 20 15:27:20 2015
+++ src/include/bitstring.h Fri Nov 20 15:37:08 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: bitstring.h,v 1.11 2015/11/20 20:27:20 christos Exp $ */
+/* $NetBSD: bitstring.h,v 1.12 2015/11/20 20:37:08 christos Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -109,7 +109,7 @@ typedef unsigned char bitstr_t;
/* find first bit clear in name */
#define bit_ffc(name, nbits, value) do { \
- bitstr_t *_name = name; \
+ const bitstr_t *_name = name; \
size_t _bit, _nbits = nbits; \
int _value = -1; \
for (_bit = 0; _bit < _nbits; ++_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; \
+ const bitstr_t *_name = name; \
size_t _bit, _nbits = nbits; \
int _value = -1; \
for (_bit = 0; _bit < _nbits; ++_bit) \