mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
Cleanup !! for bool
!!x makes no sense if x is bool (this is a leftover from the
convertion pa_bool_t -> bool, d806b197)
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
parent
3fb349296f
commit
f390e6e974
12 changed files with 23 additions and 23 deletions
|
|
@ -122,7 +122,7 @@ void pa_source_output_new_data_set_muted(pa_source_output_new_data *data, bool m
|
|||
pa_assert(data);
|
||||
|
||||
data->muted_is_set = true;
|
||||
data->muted = !!mute;
|
||||
data->muted = mute;
|
||||
}
|
||||
|
||||
bool pa_source_output_new_data_set_source(pa_source_output_new_data *data, pa_source *s, bool save) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue