mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
fix size calculation
This commit is contained in:
parent
eca32235fb
commit
4bfa5d7d13
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue