mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-08 13:29:59 -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
|
|
@ -1009,11 +1009,11 @@ int main(int argc, char *argv[]) {
|
|||
c->scache_idle_time = conf->scache_idle_time;
|
||||
c->resample_method = conf->resample_method;
|
||||
c->realtime_priority = conf->realtime_priority;
|
||||
c->realtime_scheduling = !!conf->realtime_scheduling;
|
||||
c->disable_remixing = !!conf->disable_remixing;
|
||||
c->disable_lfe_remixing = !!conf->disable_lfe_remixing;
|
||||
c->deferred_volume = !!conf->deferred_volume;
|
||||
c->running_as_daemon = !!conf->daemonize;
|
||||
c->realtime_scheduling = conf->realtime_scheduling;
|
||||
c->disable_remixing = conf->disable_remixing;
|
||||
c->disable_lfe_remixing = conf->disable_lfe_remixing;
|
||||
c->deferred_volume = conf->deferred_volume;
|
||||
c->running_as_daemon = conf->daemonize;
|
||||
c->disallow_exit = conf->disallow_exit;
|
||||
c->flat_volumes = conf->flat_volumes;
|
||||
#ifdef HAVE_DBUS
|
||||
|
|
@ -1081,7 +1081,7 @@ int main(int argc, char *argv[]) {
|
|||
|
||||
/* We completed the initial module loading, so let's disable it
|
||||
* from now on, if requested */
|
||||
c->disallow_module_loading = !!conf->disallow_module_loading;
|
||||
c->disallow_module_loading = conf->disallow_module_loading;
|
||||
|
||||
#ifdef HAVE_DBUS
|
||||
if (!conf->system_instance) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue