diff options
author | Thomas Jansen <mithi@mithi.net> | 2008-11-24 14:57:30 +0100 |
---|---|---|
committer | Thomas Jansen <mithi@mithi.net> | 2008-11-24 14:57:30 +0100 |
commit | 25551768542a3413660ad02436f421b9d4de39bc (patch) | |
tree | 31b2d12da96ce998581fb70db36ef7b166b8f3ee | |
parent | bc74503a699874432fe6f16f7714b97e9ee380a1 (diff) | |
download | mpd-25551768542a3413660ad02436f421b9d4de39bc.tar.gz mpd-25551768542a3413660ad02436f421b9d4de39bc.tar.xz mpd-25551768542a3413660ad02436f421b9d4de39bc.zip |
tag_id3.h: replaced mpd_unused by G_GNUC_UNUSED
-rw-r--r-- | src/tag_id3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tag_id3.h b/src/tag_id3.h index 4140896b2..101c60b0f 100644 --- a/src/tag_id3.h +++ b/src/tag_id3.h @@ -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; } |