From d3f534025c9541197e4fbd585e6d29f0183fd445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Dalleau?= Date: Mon, 22 Aug 2011 17:30:42 +0200 Subject: [PATCH] Update g_strcmp0 to strcasecmp --- audio/media.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/media.c b/audio/media.c index ae2b471c1..5ab3eab3e 100644 --- a/audio/media.c +++ b/audio/media.c @@ -639,7 +639,7 @@ static struct media_endpoint *media_endpoint_create(struct media_adapter *adapte if (endpoint->sep == NULL) goto failed; } else if (strcasecmp(uuid, HFP_AG_UUID) == 0 || - g_strcmp0(uuid, HSP_AG_UUID) == 0) { + strcasecmp(uuid, HSP_AG_UUID) == 0) { struct audio_device *dev; endpoint->hs_watch = headset_add_state_cb(headset_state_changed, -- 2.47.3