summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dbus/dbus-internals.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/dbus-internals.c b/dbus/dbus-internals.c
index 575a0875..9c8bc529 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);
}
}