mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
metadata: fix string compare
This commit is contained in:
parent
add30965e3
commit
36c10046da
1 changed files with 1 additions and 1 deletions
|
|
@ -143,7 +143,7 @@ static inline int strzcmp(const char *s1, const char *s2)
|
|||
return 0;
|
||||
if (s1 == NULL || s2 == NULL)
|
||||
return 1;
|
||||
return strcmp(s1, s1);
|
||||
return strcmp(s1, s2);
|
||||
}
|
||||
|
||||
static int change_property(jack_property_t *prop, const char *value, const char *type)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue