mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
fix a validity check
This commit is contained in:
parent
1db64781bf
commit
786398dc63
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ static pa_bool_t entries_equal(const struct entry *a, const struct entry *b) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
if (a->muted_valid != b->muted_valid ||
|
if (a->muted_valid != b->muted_valid ||
|
||||||
(a->muted && (a->muted != b->muted)))
|
(a->muted_valid && (a->muted != b->muted)))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
t = b->relative_volume;
|
t = b->relative_volume;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue