summaryrefslogtreecommitdiff
path: root/gst/gstparse.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-12-28 14:15:53 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-12-28 14:15:53 +0000
commit5cb869bfdf5c5c387a706b54ec22867437f29f4d (patch)
tree6520a09fea0c72efa28a23a44fdbcfa47e582dc1 /gst/gstparse.c
parentdd739adfa72066d51c1b9445b241e0e1c566c1c0 (diff)
downloadgstreamer-5cb869bfdf5c5c387a706b54ec22867437f29f4d.tar.gz
gst/: Bunch of gratuitous nano-optimisations.
Original commit message from CVS: * gst/gstcaps.c: (gst_caps_to_string): * gst/gstinfo.c: (gst_debug_construct_term_color): * gst/gstparse.c: (gst_parse_launchv): * gst/gstutils.c: (gst_util_dump_mem): * gst/gstvalue.c: (gst_value_serialize_any_list), (gst_value_transform_any_list_string): Bunch of gratuitous nano-optimisations.
Diffstat (limited to 'gst/gstparse.c')
-rw-r--r--gst/gstparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstparse.c b/gst/gstparse.c
index 041f68ad35..ba6a6f1fbe 100644
--- a/gst/gstparse.c
+++ b/gst/gstparse.c
@@ -112,7 +112,7 @@ gst_parse_launchv (const gchar ** argv, GError ** error)
tmp = _gst_parse_escape (arg);
g_string_append (str, tmp);
g_free (tmp);
- g_string_append (str, " ");
+ g_string_append_c (str, ' ');
argvp++;
}