replaced mpd_printf etc by G_GNUC_PRINTF

We want to remove gcc.h eventually. This takes care of all the G_GNUC_PRINTF
macros.
This commit is contained in:
Thomas Jansen
2008-12-02 03:00:02 +01:00
parent e6ae40982e
commit c06ce44768
6 changed files with 17 additions and 21 deletions

View File

@@ -102,8 +102,8 @@ static void command_error_v(struct client *client, enum ack error,
current_command = NULL;
}
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, ...)
{
va_list args;
va_start(args, fmt);
@@ -111,7 +111,7 @@ mpd_fprintf_ void command_error(struct client *client, enum ack error,
va_end(args);
}
static bool mpd_fprintf__
static bool G_GNUC_PRINTF(4, 5)
check_uint32(struct client *client, uint32_t *dst,
const char *s, const char *fmt, ...)
{
@@ -128,7 +128,7 @@ check_uint32(struct client *client, uint32_t *dst,
return true;
}
static bool mpd_fprintf__
static bool G_GNUC_PRINTF(4, 5)
check_int(struct client *client, int *value_r,
const char *s, const char *fmt, ...)
{