daemon: use pa_streq instead of strcmp

This commit is contained in:
Arti Trivedi Bora 2012-06-06 01:28:16 +05:30 committed by Tanu Kaskinen
parent 41ee562140
commit 8fb63dd6e4
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}