diff options
Diffstat (limited to 'glib/gprintf.h')
-rw-r--r-- | glib/gprintf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/glib/gprintf.h b/glib/gprintf.h index d96870fb4..2ed5ecc96 100644 --- a/glib/gprintf.h +++ b/glib/gprintf.h @@ -36,16 +36,16 @@ gint g_sprintf (gchar *string, ...) G_GNUC_PRINTF (2, 3); gint g_vprintf (gchar const *format, - va_list args); + va_list args) G_GNUC_PRINTF(1, 0); gint g_vfprintf (FILE *file, gchar const *format, - va_list args); + va_list args) G_GNUC_PRINTF(2, 0); gint g_vsprintf (gchar *string, gchar const *format, - va_list args); + va_list args) G_GNUC_PRINTF(2, 0); gint g_vasprintf (gchar **string, gchar const *format, - va_list args); + va_list args) G_GNUC_PRINTF(2, 0); G_END_DECLS |