diff options
author | Ralf Habacker <ralf.habacker@freenet.de> | 2015-02-16 15:08:22 +0100 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2015-02-16 15:12:06 +0100 |
commit | 387c1a5b91aec1887fcb25a1285d6c5934f21621 (patch) | |
tree | 281fff3fc95dbb5bee91f5b808d771bb737fb8dc /tools/dbus-monitor.c | |
parent | 450c7067de1f1856b189c0bab59da4fcdbafbba3 (diff) | |
download | dbus-387c1a5b91aec1887fcb25a1285d6c5934f21621.tar.gz |
dbus-monitor: Remove empty column in --profile mode.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=89165
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'tools/dbus-monitor.c')
-rw-r--r-- | tools/dbus-monitor.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/dbus-monitor.c b/tools/dbus-monitor.c index 4be91e88..14ceae90 100644 --- a/tools/dbus-monitor.c +++ b/tools/dbus-monitor.c @@ -125,7 +125,7 @@ static void profile_print_headers (void) { printf ("#type\ttimestamp\tserial\tsender\tdestination\tpath\tinterface\tmember\n"); - printf ("#\t\t\t\t\t\tin_reply_to\n"); + printf ("#\t\t\t\t\tin_reply_to\n"); } static void @@ -145,8 +145,6 @@ profile_print_with_attrs (const char *type, DBusMessage *message, if (attrs & PROFILE_ATTRIBUTE_FLAG_REPLY_SERIAL) printf ("\t%u", dbus_message_get_reply_serial (message)); - else - printf ("\t"); if (attrs & PROFILE_ATTRIBUTE_FLAG_PATH) printf ("\t%s", TRAP_NULL_STRING (dbus_message_get_path (message))); |