Skip to content

Commit 0e4bb2a

Browse files
committed
Quieten a compiler warning on Ubuntu 26.04.
1 parent eb82fa3 commit 0e4bb2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mdns_avahi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ static void browse_callback(AvahiServiceBrowser *b, AvahiIfIndex interface, Avah
168168
debug(3, "(Browser) REMOVE: service '%s' of type '%s' in domain '%s'.", name, type, domain);
169169
#ifdef CONFIG_DACP_CLIENT
170170
dacp_browser_struct *dbs = (dacp_browser_struct *)userdata;
171-
char *dacpid = strstr(name, "iTunes_Ctrl_");
171+
const char *dacpid = strstr(name, "iTunes_Ctrl_");
172172
if (dacpid) {
173173
dacpid += strlen("iTunes_Ctrl_");
174174
while (*dacpid == '0')

0 commit comments

Comments
 (0)