Commit 02273d96 authored by Thomas Jansen's avatar Thomas Jansen

sig_handlers.c: replaced mpd_unused by G_GNUC_UNUSED

parent 87751ddb
......@@ -28,6 +28,7 @@
#include <sys/signal.h>
#include <sys/wait.h>
#include <errno.h>
#include <glib.h>
int handlePendingSignals(void)
{
......@@ -50,7 +51,7 @@ int handlePendingSignals(void)
return 0;
}
static void chldSigHandler(mpd_unused int sig)
static void chldSigHandler(G_GNUC_UNUSED int sig)
{
int status;
int pid;
......
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