mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-17 06:59:56 -05:00
modules: Use pa_streq instead of strcmp.
This commit is contained in:
parent
e0c16af551
commit
e5954aca8e
19 changed files with 45 additions and 45 deletions
|
|
@ -173,8 +173,8 @@ static void load_module(
|
|||
|
||||
if (!is_new) {
|
||||
if (m->items[i].index != PA_INVALID_INDEX &&
|
||||
strcmp(m->items[i].name, name) == 0 &&
|
||||
strcmp(m->items[i].args, args) == 0)
|
||||
pa_streq(m->items[i].name, name) &&
|
||||
pa_streq(m->items[i].args, args))
|
||||
return;
|
||||
|
||||
unload_one_module(u, m, i);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue