pulse-server: return NULL instead of 0

... to be consistent with the vast majority of the
existing source code.
This commit is contained in:
Barnabás Pőcze 2021-10-18 15:28:59 +02:00
parent ee7b82ac9e
commit 3fefb55ef2

View file

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