diff options
author | David Robillard <d@drobilla.net> | 2021-09-10 20:11:28 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-09-10 20:11:28 -0400 |
commit | 733d7601d7f75b70bb0bf3315c5a282a7d699b67 (patch) | |
tree | 08631b160906f413866655be0327341d451d5a2b /test/bitset_test.c | |
parent | b45b6b442f0e3f821921a48f957944f485adfd1b (diff) | |
download | zix-733d7601d7f75b70bb0bf3315c5a282a7d699b67.tar.gz zix-733d7601d7f75b70bb0bf3315c5a282a7d699b67.tar.bz2 zix-733d7601d7f75b70bb0bf3315c5a282a7d699b67.zip |
Be explicit about the sign of defined integer constants
Diffstat (limited to 'test/bitset_test.c')
-rw-r--r-- | test/bitset_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bitset_test.c b/test/bitset_test.c index dda59d3..27f1d2d 100644 --- a/test/bitset_test.c +++ b/test/bitset_test.c @@ -21,7 +21,7 @@ #include <stdarg.h> #include <stdio.h> -#define N_BITS 256 +#define N_BITS 256u #define N_ELEMS (ZIX_BITSET_ELEMS(N_BITS)) #define MIN(a, b) (((a) < (b)) ? (a) : (b)) |