mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2025-04-21 12:27:27 +03:00
b2/bitset.h: fix logic of bitset_empty
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user