mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-02-28 01:40:43 -05:00
treewide: replace strcmp() != 0 with !spa_streq
This change is only done in source files for now, header files will be done separately.
This commit is contained in:
parent
95a84e797a
commit
522f87d5ea
40 changed files with 83 additions and 79 deletions
|
|
@ -475,7 +475,7 @@ static void registry_event_global(void *data, uint32_t id,
|
|||
struct data *d = data;
|
||||
struct pw_proxy *proxy;
|
||||
|
||||
if (strcmp(type, PW_TYPE_INTERFACE_Profiler) != 0)
|
||||
if (!spa_streq(type, PW_TYPE_INTERFACE_Profiler))
|
||||
return;
|
||||
|
||||
if (d->profiler != NULL) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue