dbUtils.c: replaced mpd_unused by G_GNUC_UNUSED

This commit is contained in:
Thomas Jansen 2008-11-24 14:42:47 +01:00
parent 3d258504a1
commit 34b1a9061e

View File

@ -70,7 +70,7 @@ printDirectoryInDirectory(struct directory *directory, void *data)
} }
static int static int
printSongInDirectory(struct song *song, mpd_unused void *data) printSongInDirectory(struct song *song, G_GNUC_UNUSED void *data)
{ {
struct client *client = data; struct client *client = data;
song_print_url(client, song); song_print_url(client, song);
@ -194,7 +194,7 @@ int printAllIn(struct client *client, const char *name)
} }
static int static int
directoryAddSongToPlaylist(struct song *song, mpd_unused void *data) directoryAddSongToPlaylist(struct song *song, G_GNUC_UNUSED void *data)
{ {
return addSongToPlaylist(song, NULL); return addSongToPlaylist(song, NULL);
} }