aboutsummaryrefslogtreecommitdiffstats
path: root/src/dbUtils.c
diff options
context:
space:
mode:
authorThomas Jansen <mithi@mithi.net>2008-11-24 14:42:47 +0100
committerThomas Jansen <mithi@mithi.net>2008-11-24 14:42:47 +0100
commit34b1a9061ebda061b360bb54e8231cef0f691fd7 (patch)
treeb1871a780e83c639d87f271ae25ab1370ff71ed4 /src/dbUtils.c
parent3d258504a1dcbf1d13a154e16054ff44dc4963d4 (diff)
downloadmpd-34b1a9061ebda061b360bb54e8231cef0f691fd7.tar.gz
mpd-34b1a9061ebda061b360bb54e8231cef0f691fd7.tar.xz
mpd-34b1a9061ebda061b360bb54e8231cef0f691fd7.zip
dbUtils.c: replaced mpd_unused by G_GNUC_UNUSED
Diffstat (limited to 'src/dbUtils.c')
-rw-r--r--src/dbUtils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dbUtils.c b/src/dbUtils.c
index 49ab6aac9..c2a637b3a 100644
--- a/src/dbUtils.c
+++ b/src/dbUtils.c
@@ -70,7 +70,7 @@ printDirectoryInDirectory(struct directory *directory, void *data)
}
static int
-printSongInDirectory(struct song *song, mpd_unused void *data)
+printSongInDirectory(struct song *song, G_GNUC_UNUSED void *data)
{
struct client *client = data;
song_print_url(client, song);
@@ -194,7 +194,7 @@ int printAllIn(struct client *client, const char *name)
}
static int
-directoryAddSongToPlaylist(struct song *song, mpd_unused void *data)
+directoryAddSongToPlaylist(struct song *song, G_GNUC_UNUSED void *data)
{
return addSongToPlaylist(song, NULL);
}