diff options
Diffstat (limited to '')
-rw-r--r-- | src/command.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/command.h b/src/command.h index ac557b2fc..b67e9567e 100644 --- a/src/command.h +++ b/src/command.h @@ -19,7 +19,6 @@ #ifndef MPD_COMMAND_H #define MPD_COMMAND_H -#include "gcc.h" #include "ack.h" #include <glib.h> @@ -47,7 +46,7 @@ command_process(struct client *client, char *commandString); void command_success(struct client *client); -mpd_fprintf_ void command_error(struct client *client, enum ack error, - const char *fmt, ...); +G_GNUC_PRINTF(3, 4) void command_error(struct client *client, enum ack error, + const char *fmt, ...); #endif |