From 32baca0ee2bfeec608a7e8c4057bf7e8e0f483b2 Mon Sep 17 00:00:00 2001 From: Qball Cow Date: Sun, 23 Aug 2009 14:53:39 +0200 Subject: [PATCH] Remove printf's --- src/plugin.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/plugin.c b/src/plugin.c index af4e00b..44ea6f2 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -117,7 +117,6 @@ static void lyrdb_download_callback(const GEADAsyncHandler *handle, GEADStatus s /** * TODO: Make this check utf8 */ - printf("comparing: '%s::%s' and '%s::%s'\n", fields[2], q->song->artist, fields[1], q->song->title); if(strcasecmp(fields[2], q->song->artist) == 0 && strcasecmp(fields[1], q->song->title) == 0) { gchar *uri_path = NULL; @@ -149,7 +148,6 @@ static void lyrdb_download_callback(const GEADAsyncHandler *handle, GEADStatus s static void lyrdb_get_uri(mpd_Song *song, MetaDataType type, void (*callback)(GList *list, gpointer data), gpointer user_data) { - printf("Lyricwiki plugin api V2\n"); if(lyrdb_get_enabled() && type == META_SONG_TXT && song && song->artist &&song->title) { Query *q = g_malloc0(sizeof(*q)); @@ -164,7 +162,6 @@ static void lyrdb_get_uri(mpd_Song *song, MetaDataType type, void (*callback)(GL q->list = NULL; q->downloads = NULL; g_free(artist); g_free(title); - printf("Trying: '%s'\n", uri_path); if(gmpc_easy_async_downloader(uri_path, lyrdb_download_callback, q)!= NULL) { g_free(uri_path); -- 2.11.4.GIT