mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Fix various compiler warnings
These caused build failures with -Werror.
This commit is contained in:
parent
68b30e36b4
commit
e8f3450a58
6 changed files with 13 additions and 68 deletions
|
|
@ -29,10 +29,8 @@
|
|||
|
||||
PWTEST(openal_info_test)
|
||||
{
|
||||
int status;
|
||||
|
||||
#ifdef OPENAL_INFO_PATH
|
||||
status = pwtest_spawn(OPENAL_INFO_PATH, (char *[]){ "openal-info", NULL });
|
||||
int status = pwtest_spawn(OPENAL_INFO_PATH, (char *[]){ "openal-info", NULL });
|
||||
pwtest_int_eq(WEXITSTATUS(status), 0);
|
||||
return PWTEST_PASS;
|
||||
#else
|
||||
|
|
@ -42,10 +40,8 @@ PWTEST(openal_info_test)
|
|||
|
||||
PWTEST(pactl_test)
|
||||
{
|
||||
int status;
|
||||
|
||||
#ifdef PACTL_PATH
|
||||
status = pwtest_spawn(PACTL_PATH, (char *[]){ "pactl", "info", NULL });
|
||||
int status = pwtest_spawn(PACTL_PATH, (char *[]){ "pactl", "info", NULL });
|
||||
pwtest_int_eq(WEXITSTATUS(status), 0);
|
||||
return PWTEST_PASS;
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue