Commit b9fefc45 authored by Thomas Jansen's avatar Thomas Jansen

player_thread.c: replaced mpd_unused by G_GNUC_UNUSED

parent 3742cf3a
......@@ -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) {
......
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