mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
daemon: use pa_streq instead of strcmp
This commit is contained in:
parent
41ee562140
commit
8fb63dd6e4
2 changed files with 2 additions and 2 deletions
|
|
@ -106,7 +106,7 @@ static int is_preloaded(const char *name) {
|
|||
if ((e = strrchr(buf, '.')))
|
||||
*e = 0;
|
||||
|
||||
if (!strcmp(name, buf))
|
||||
if (pa_streq(name, buf))
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue