player_thread.c: replaced mpd_unused by G_GNUC_UNUSED
This commit is contained in:
parent
3742cf3abb
commit
b9fefc4564
|
@ -29,6 +29,8 @@
|
|||
#include "pipe.h"
|
||||
#include "idle.h"
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
enum xfade_state {
|
||||
XFADE_DISABLED = -1,
|
||||
XFADE_UNKNOWN = 0,
|
||||
|
@ -490,7 +492,7 @@ static void do_play(void)
|
|||
player_stop_decoder();
|
||||
}
|
||||
|
||||
static void * player_task(mpd_unused void *arg)
|
||||
static void * player_task(G_GNUC_UNUSED void *arg)
|
||||
{
|
||||
while (1) {
|
||||
switch (pc.command) {
|
||||
|
|
Loading…
Reference in New Issue