don't declare on the proper define
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 10 Oct 2005 23:11:33 +0000 (23:11 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 10 Oct 2005 23:11:33 +0000 (23:11 +0000)
Original commit message from CVS:
don't declare on the proper define

gst/parse/grammar.y

index d17b80e..8f0eaad 100644 (file)
@@ -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