fix size calculation

This commit is contained in:
Lennart Poettering 2009-01-27 04:35:11 +01:00
parent eca32235fb
commit 4bfa5d7d13

View file

@ -26,7 +26,7 @@
#include <pulsecore/macro.h>
#define PA_BITSET_ELEMENTS(n) (((n)+31)/32)
#define PA_BITSET_SIZE(n) (PA_BITSET_ELEMENTS(n)*32)
#define PA_BITSET_SIZE(n) (PA_BITSET_ELEMENTS(n)*4)
typedef uint32_t pa_bitset_t;