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 <pmeerw@pmeerw.net>
This commit is contained in:
Peter Meerwald 2014-11-09 17:38:27 +01:00 committed by Peter Meerwald
parent 09a3d904a1
commit 275ffb3657

View file

@ -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) else if (a->volume_use == PA_ALSA_VOLUME_MERGE)
a_limit = a->volume_limit; a_limit = a->volume_limit;
else else
/* This should never be reached */ pa_assert_not_reached();
pa_assert(false);
if (a_limit > b->volume_limit) if (a_limit > b->volume_limit)
return false; return false;