From: Ralf Habacker Date: Fri, 10 Apr 2015 10:38:59 +0000 (+0200) Subject: Add newline to verbose output in _dbus_trace_ref(). X-Git-Tag: dbus-1.8.18~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96e02c5dc6cad8041696de10ddf7c8a3a7d11992;p=thirdparty%2Fdbus.git Add newline to verbose output in _dbus_trace_ref(). Bug: https://bugs.freedesktop.org/show_bug.cgi?id=90004 Reviewed-by: Simon McVittie --- diff --git a/dbus/dbus-internals.c b/dbus/dbus-internals.c index 575a0875c..9c8bc529f 100644 --- a/dbus/dbus-internals.c +++ b/dbus/dbus-internals.c @@ -499,7 +499,7 @@ _dbus_trace_ref (const char *obj_name, { VALGRIND_PRINTF_BACKTRACE ("%s %p ref stolen (%s)", obj_name, obj, why); - _dbus_verbose ("%s %p ref stolen (%s)", + _dbus_verbose ("%s %p ref stolen (%s)\n", obj_name, obj, why); } else @@ -507,7 +507,7 @@ _dbus_trace_ref (const char *obj_name, VALGRIND_PRINTF_BACKTRACE ("%s %p %d -> %d refs (%s)", obj_name, obj, old_refcount, new_refcount, why); - _dbus_verbose ("%s %p %d -> %d refs (%s)", + _dbus_verbose ("%s %p %d -> %d refs (%s)\n", obj_name, obj, old_refcount, new_refcount, why); } }