From 33a77b7a019fffaa1c3eef5bbbda5073f5aa158c Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 10 Oct 2005 23:11:33 +0000 Subject: [PATCH] don't declare on the proper define Original commit message from CVS: don't declare on the proper define --- gst/parse/grammar.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y index d17b80e69a..8f0eaad672 100644 --- a/gst/parse/grammar.y +++ b/gst/parse/grammar.y @@ -186,7 +186,7 @@ YYPRINTF(const char *format, ...) gchar *temp; va_start (varargs, format); - temp = g_strdup_vprintf ( format, varargs ); + temp = g_strdup_vprintf (format, varargs); GST_CAT_LOG (GST_CAT_PIPELINE, "%s", temp); g_free (temp); va_end (varargs); @@ -833,7 +833,7 @@ _gst_parse_launch (const gchar *str, GError **error) dstr = g_strdup (str); buf = _gst_parse_yy_scan_string (dstr); -#ifndef GST_DISABLE_GST_DEBUG +#ifndef YYDEBUG yydebug = 1; #endif