diff options
author | Thomas Jansen <mithi@mithi.net> | 2008-11-24 14:41:53 +0100 |
---|---|---|
committer | Thomas Jansen <mithi@mithi.net> | 2008-11-24 14:41:53 +0100 |
commit | 3d258504a1dcbf1d13a154e16054ff44dc4963d4 (patch) | |
tree | 15e6d8304386027b186ca2bdbde2b5a2134c996b /src/decoder_thread.c | |
parent | f7d995f807aa6a8a70a20e7a5e97984de60d23bd (diff) | |
download | mpd-3d258504a1dcbf1d13a154e16054ff44dc4963d4.tar.gz mpd-3d258504a1dcbf1d13a154e16054ff44dc4963d4.tar.xz mpd-3d258504a1dcbf1d13a154e16054ff44dc4963d4.zip |
decoder_thread.c: replaced mpd_unused by G_GNUC_UNUSED
Diffstat (limited to '')
-rw-r--r-- | src/decoder_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c index ca8511c49..9198595b6 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -200,7 +200,7 @@ static void decoder_run(void) dc.state = ret ? DECODE_STATE_STOP : DECODE_STATE_ERROR; } -static void * decoder_task(mpd_unused void *arg) +static void * decoder_task(G_GNUC_UNUSED void *arg) { while (1) { assert(dc.state == DECODE_STATE_STOP || |