diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-03-07 17:26:49 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-03-07 17:26:49 +0000 |
commit | a6510349d4c79ec43702ee40cda839050ab7f7f7 (patch) | |
tree | 50fa6d6c410afe9359d2c967592682f6dd8d2148 /gst/gstregistrybinary.c | |
parent | beefb6c9cdefd50525100b406b0eefa008b005e3 (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/gstregistrybinary.c')
-rw-r--r-- | gst/gstregistrybinary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstregistrybinary.c b/gst/gstregistrybinary.c index 5baff6162..8982b4aa9 100644 --- a/gst/gstregistrybinary.c +++ b/gst/gstregistrybinary.c @@ -747,7 +747,7 @@ gst_registry_binary_read_cache (GstRegistry * registry, const char *location) mapped = g_mapped_file_new (location, FALSE, &err); if (err != NULL) { - GST_INFO ("Unable to mmap file: %s\n", err->message); + GST_INFO ("Unable to mmap file: %s", err->message); g_error_free (err); return FALSE; } |