diff --git a/b2/bitset.h b/b2/bitset.h index 6b7f611..e3c6e56 100644 --- a/b2/bitset.h +++ b/b2/bitset.h @@ -48,7 +48,7 @@ static inline int bitset_get(const struct bitset *b, int n) static inline int bitset_empty(const struct bitset *b) { - return !!b->v; + return !b->v; }