treewide: fix some compiler warnings

This commit is contained in:
Wim Taymans 2026-05-27 16:29:17 +02:00
parent 61726f41d5
commit e41ba35139
4 changed files with 6 additions and 6 deletions

View file

@ -5338,7 +5338,7 @@ int jack_set_freewheel(jack_client_t* client, int onoff)
pw_thread_loop_lock(c->context.loop);
str = pw_properties_get(c->props, PW_KEY_NODE_GROUP);
if (str != NULL) {
char *p = strstr(str, ",pipewire.freewheel");
const char *p = strstr(str, ",pipewire.freewheel");
if (p == NULL)
p = strstr(str, "pipewire.freewheel");
if (p == NULL && onoff)