discoverer: fix build after last commit

Add a forward declaration for my_g_string_append_printf that specifies
G_GNUC_PRINTF. Turn off indent on it as it drives gst-indent crazy.
This commit is contained in:
Alessandro Decina 2013-11-04 11:34:38 +01:00
parent d9c39b9fe0
commit 08bac91ae1

View file

@ -26,6 +26,10 @@
#include <gst/gst.h>
#include <gst/pbutils/pbutils.h>
/* *INDENT-OFF* */
static void my_g_string_append_printf (GString * str, int depth, const gchar * format, ...) G_GNUC_PRINTF (3, 4);
/* *INDENT-ON* */
static gboolean async = FALSE;
static gboolean show_toc = FALSE;
static gboolean verbose = FALSE;
@ -39,7 +43,6 @@ typedef struct
static void
my_g_string_append_printf (GString * str, int depth, const gchar * format, ...)
G_GNUC_PRINTF (3, 4)
{
va_list args;