mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05:00
pulse-server: return NULL instead of 0
... to be consistent with the vast majority of the existing source code.
This commit is contained in:
parent
ee7b82ac9e
commit
3fefb55ef2
1 changed files with 2 additions and 1 deletions
|
|
@ -42,5 +42,6 @@ const struct extension *extension_find(uint32_t idx, const char *name)
|
||||||
if (idx == extensions[i].idx || spa_streq(name, extensions[i].name))
|
if (idx == extensions[i].idx || spa_streq(name, extensions[i].name))
|
||||||
return &extensions[i];
|
return &extensions[i];
|
||||||
}
|
}
|
||||||
return 0;
|
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue