From aa57931879d80fda041245381bf0a07f4fa6256e Mon Sep 17 00:00:00 2001 From: Julien BLACHE Date: Fri, 17 Sep 2010 12:21:05 +0200 Subject: [PATCH] Fix typo in goto label name --- src/player.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/player.c b/src/player.c index 595b318e..f198a377 100644 --- a/src/player.c +++ b/src/player.c @@ -3066,7 +3066,7 @@ raop_device_cb(const char *name, const char *type, const char *domain, const cha { DPRINTF(E_LOG, L_PLAYER, "AirTunes %s: no am field in TXT record!\n", name); - goto no_ma; + goto no_am; } avahi_string_list_get_pair(p, &key, &val, &valsz); @@ -3075,7 +3075,7 @@ raop_device_cb(const char *name, const char *type, const char *domain, const cha { DPRINTF(E_LOG, L_PLAYER, "AirTunes %s: am has no value\n", name); - goto no_ma; + goto no_am; } if (strncmp(val, "AppleTV", strlen("AppleTV")) == 0) @@ -3083,7 +3083,7 @@ raop_device_cb(const char *name, const char *type, const char *domain, const cha avahi_free(val); - no_ma: + no_am: pthread_mutex_lock(&dev_lck); for (rd = dev_list; rd; rd = rd->next)