Commit 3d258504 authored by Thomas Jansen's avatar Thomas Jansen

decoder_thread.c: replaced mpd_unused by G_GNUC_UNUSED

parent f7d995f8
...@@ -200,7 +200,7 @@ static void decoder_run(void) ...@@ -200,7 +200,7 @@ static void decoder_run(void)
dc.state = ret ? DECODE_STATE_STOP : DECODE_STATE_ERROR; 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) { while (1) {
assert(dc.state == DECODE_STATE_STOP || assert(dc.state == DECODE_STATE_STOP ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment