aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThomas Jansen <mithi@mithi.net>2008-11-24 03:43:47 +0100
committerMax Kellermann <max@duempel.org>2008-11-24 07:47:38 +0100
commitb68698493bd87e2d192d57b6114b62a06d98fc6f (patch)
tree70580118a5fd01ee743ee5a516814c0500760fca /src
parent991f769c7dbe32128c5e8993b3c76e4e73bdc07b (diff)
downloadmpd-b68698493bd87e2d192d57b6114b62a06d98fc6f.tar.gz
mpd-b68698493bd87e2d192d57b6114b62a06d98fc6f.tar.xz
mpd-b68698493bd87e2d192d57b6114b62a06d98fc6f.zip
lyrics.c: replaced mpd_unused by G_GNUC_UNUSED
Diffstat (limited to 'src')
-rw-r--r--src/lyrics.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lyrics.c b/src/lyrics.c
index e6cb5d2b3..7686c1356 100644
--- a/src/lyrics.c
+++ b/src/lyrics.c
@@ -17,7 +17,6 @@
*/
#include "lyrics.h"
-#include "gcc.h"
#include "../config.h"
#include <assert.h>
@@ -120,8 +119,8 @@ lyrics_eof(struct lyrics_loader *loader)
}
static gboolean
-lyrics_data(mpd_unused GIOChannel *source,
- mpd_unused GIOCondition condition, gpointer data)
+lyrics_data(G_GNUC_UNUSED GIOChannel *source,
+ G_GNUC_UNUSED GIOCondition condition, gpointer data)
{
struct lyrics_loader *loader = data;
char buffer[256];