parse: fix some debug
authorWim Taymans <wim.taymans@collabora.co.uk>
Tue, 17 Jul 2012 07:57:47 +0000 (09:57 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Tue, 17 Jul 2012 08:04:26 +0000 (10:04 +0200)
gst/gstparse.c
gst/parse/grammar.y
gst/parse/types.h

index 97f3ca7..75662d0 100644 (file)
@@ -251,7 +251,7 @@ gst_parse_launchv_full (const gchar ** argv, GstParseContext * context,
   argvp = argv;
   while (*argvp) {
     arg = *argvp;
-    GST_DEBUG ("eascaping argument %s", arg);
+    GST_DEBUG ("escaping argument %s", arg);
     tmp = _gst_parse_escape (arg);
     g_string_append (str, tmp);
     g_free (tmp);
index 91bf56b..1b1dffa 100644 (file)
@@ -397,7 +397,7 @@ gst_parse_element_set (gchar *value, GstElement *element, graph_t *graph)
   if (element == NULL)
     goto out;
 
-  /* parse the string, so the property name is null-terminated an pos points
+  /* parse the string, so the property name is null-terminated and pos points
      to the beginning of the value */
   while (!g_ascii_isspace (*pos) && (*pos != '=')) pos++;
   if (*pos == '=') {
index 749803c..79a14c6 100644 (file)
@@ -76,6 +76,8 @@ gst_parse_unescape (gchar *str)
   walk = str;
   in_quotes = FALSE;
 
+  GST_DEBUG ("unescaping %s", str);
+
   while (*walk) {
     if (*walk == '\\' && !in_quotes) {
       walk++;