tag_id3.h: replaced mpd_unused by G_GNUC_UNUSED

This commit is contained in:
Thomas Jansen 2008-11-24 14:57:30 +01:00
parent bc74503a69
commit 2555176854

View File

@ -31,10 +31,10 @@ struct tag *tag_id3_load(const char *file);
#else
#include "gcc.h"
#include <glib.h>
static inline struct tag *
tag_id3_load(mpd_unused const char *file)
tag_id3_load(G_GNUC_UNUSED const char *file)
{
return NULL;
}