diff options
author | Thomas Jansen <mithi@mithi.net> | 2008-11-24 14:33:46 +0100 |
---|---|---|
committer | Thomas Jansen <mithi@mithi.net> | 2008-11-24 14:33:46 +0100 |
commit | b31b334ba638610f432c5b1e5f489edda6a606e1 (patch) | |
tree | 8e0753a39ab5752995321ab29781587a638c4ca5 /src | |
parent | f0e621bcdbd50ab1a23bf0d1becfd44d5061c6a7 (diff) | |
download | mpd-b31b334ba638610f432c5b1e5f489edda6a606e1.tar.gz mpd-b31b334ba638610f432c5b1e5f489edda6a606e1.tar.xz mpd-b31b334ba638610f432c5b1e5f489edda6a606e1.zip |
input_file.c: replaced mpd_unused by G_GNUC_UNUSED
Diffstat (limited to 'src')
-rw-r--r-- | src/input_file.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/input_file.c b/src/input_file.c index 7806e15ab..5eee8101c 100644 --- a/src/input_file.c +++ b/src/input_file.c @@ -17,7 +17,6 @@ */ #include "input_file.h" -#include "gcc.h" #include <sys/stat.h> #include <fcntl.h> @@ -117,7 +116,7 @@ input_file_eof(struct input_stream *is) } static int -input_file_buffer(mpd_unused struct input_stream *is) +input_file_buffer(G_GNUC_UNUSED struct input_stream *is) { return 0; } |