Add printf attribute

This fixes a compiler warning when using -Wmissing-format-attribute.

https://bugzilla.gnome.org/show_bug.cgi?id=698521
This commit is contained in:
Christian Persch 2013-04-21 18:56:19 +02:00
parent 273178600c
commit 55efc6e90e

View File

@ -37,6 +37,9 @@
#include <string.h>
static void
escaped_printf (GOutputStream *out, const char *fmt, ...) G_GNUC_PRINTF (2, 3);
static void
escaped_printf (GOutputStream *out, const char *fmt, ...)
{