mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
fix a few compiler warnings on older gcc
This commit is contained in:
parent
506eacc922
commit
13018d62c1
10 changed files with 19 additions and 19 deletions
|
|
@ -201,7 +201,7 @@ pa_context *pa_context_new_with_proplist(pa_mainloop_api *mainloop, const char *
|
|||
if (!(c->mempool = pa_mempool_new(!c->conf->disable_shm))) {
|
||||
|
||||
if (!c->conf->disable_shm)
|
||||
c->mempool = pa_mempool_new(0);
|
||||
c->mempool = pa_mempool_new(FALSE);
|
||||
|
||||
if (!c->mempool) {
|
||||
context_free(c);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue