Commit 34b1a906 authored by Thomas Jansen's avatar Thomas Jansen

dbUtils.c: replaced mpd_unused by G_GNUC_UNUSED

parent 3d258504
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment