diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/zix/bitset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zix/bitset.h b/include/zix/bitset.h index 56658da..38d612e 100644 --- a/include/zix/bitset.h +++ b/include/zix/bitset.h @@ -30,7 +30,7 @@ typedef uint8_t ZixBitsetTally; /// The number of bitset elements needed for the given number of bits #define ZIX_BITSET_ELEMS(n_bits) \ (((n_bits) / ZIX_BITSET_BITS_PER_ELEM) + \ - ((n_bits) % ZIX_BITSET_BITS_PER_ELEM ? 1 : 0)) + (((n_bits) % ZIX_BITSET_BITS_PER_ELEM) ? 1 : 0)) /// Clear a Bitset ZIX_API |