mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -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>
|
#include <pulsecore/macro.h>
|
||||||
|
|
||||||
#define PA_BITSET_ELEMENTS(n) (((n)+31)/32)
|
#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;
|
typedef uint32_t pa_bitset_t;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue