diff options
author | Max Kellermann <max@duempel.org> | 2009-01-01 18:08:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-01 18:08:29 +0100 |
commit | 7dfe301b54c36ccd934246e81bde6b73e241f858 (patch) | |
tree | 9ad6d18c75bff14bccfa8517e6b29a1ccd878779 /src/output/shout_ogg.c | |
parent | 0734acf392454629502b8b19f0edc865ba064c4c (diff) | |
download | mpd-7dfe301b54c36ccd934246e81bde6b73e241f858.tar.gz mpd-7dfe301b54c36ccd934246e81bde6b73e241f858.tar.xz mpd-7dfe301b54c36ccd934246e81bde6b73e241f858.zip |
output plugins: don't include gcc.h
Use GLib's G_GNUC_UNUSED instead of gcc.h's mpd_unused.
Diffstat (limited to 'src/output/shout_ogg.c')
-rw-r--r-- | src/output/shout_ogg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/shout_ogg.c b/src/output/shout_ogg.c index 3ecfd3008..d5766d0a3 100644 --- a/src/output/shout_ogg.c +++ b/src/output/shout_ogg.c @@ -222,8 +222,8 @@ static int shout_ogg_encoder_init_encoder(struct shout_data *sd) } static int shout_ogg_encoder_send_metadata(struct shout_data *sd, - mpd_unused char * song, - mpd_unused size_t size) + G_GNUC_UNUSED char * song, + G_GNUC_UNUSED size_t size) { struct ogg_vorbis_data *od = (struct ogg_vorbis_data *)sd->encoder_data; |