summaryrefslogtreecommitdiff
path: root/gst/gsttrace.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-03-07 17:26:49 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-03-07 17:26:49 +0000
commita6510349d4c79ec43702ee40cda839050ab7f7f7 (patch)
tree50fa6d6c410afe9359d2c967592682f6dd8d2148 /gst/gsttrace.c
parentbeefb6c9cdefd50525100b406b0eefa008b005e3 (diff)
gst/: Remove newlines at end of debug log strings.
Original commit message from CVS: * gst/gst.c: (load_plugin_func): * gst/gstplugin.c: (gst_plugin_load_by_name), (gst_plugin_load): * gst/gstregistrybinary.c: (gst_registry_binary_read_cache): * gst/gsttrace.c: (gst_trace_new), (gst_alloc_trace_set_flags_all): Remove newlines at end of debug log strings.
Diffstat (limited to 'gst/gsttrace.c')
-rw-r--r--gst/gsttrace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gsttrace.c b/gst/gsttrace.c
index 6a324529f..cdf344255 100644
--- a/gst/gsttrace.c
+++ b/gst/gsttrace.c
@@ -111,7 +111,7 @@ gst_trace_new (gchar * filename, gint size)
g_return_val_if_fail (trace != NULL, NULL);
trace->filename = g_strdup (filename);
- GST_DEBUG ("opening '%s'\n", trace->filename);
+ GST_DEBUG ("opening '%s'", trace->filename);
#ifndef S_IWUSR
#define S_IWUSR S_IWRITE
#endif
@@ -407,7 +407,7 @@ gst_alloc_trace_set_flags_all (GstAllocTraceFlags flags)
while (walk) {
GstAllocTrace *trace = (GstAllocTrace *) walk->data;
- GST_DEBUG ("set flags on %p\n", trace);
+ GST_DEBUG ("setting flags %d on %p", (gint) flags, trace);
gst_alloc_trace_set_flags (trace, flags);
walk = g_list_next (walk);