From 275ffb3657dbf6917e53819ba48c213e888c5845 Mon Sep 17 00:00:00 2001 From: Peter Meerwald Date: Sun, 9 Nov 2014 17:38:27 +0100 Subject: [PATCH] alsa-mixer: Use pa_assert_not_reached() get rid of the following warning when compiling with NDEBUG: modules/alsa/alsa-mixer.c: In function 'element_is_subset': modules/alsa/alsa-mixer.c:3125:18: warning: 'a_limit' may be used uninitialized in this function [-Wmaybe-uninitialized] long a_limit; Signed-off-by: Peter Meerwald --- src/modules/alsa/alsa-mixer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/alsa/alsa-mixer.c b/src/modules/alsa/alsa-mixer.c index 8b23d904c..b5d6276e2 100644 --- a/src/modules/alsa/alsa-mixer.c +++ b/src/modules/alsa/alsa-mixer.c @@ -3155,8 +3155,7 @@ static bool element_is_subset(pa_alsa_element *a, pa_alsa_element *b, snd_mixer_ else if (a->volume_use == PA_ALSA_VOLUME_MERGE) a_limit = a->volume_limit; else - /* This should never be reached */ - pa_assert(false); + pa_assert_not_reached(); if (a_limit > b->volume_limit) return false;