diff options
author | Ralf Habacker <ralf.habacker@freenet.de> | 2015-02-17 08:38:44 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2015-02-24 11:48:40 +0000 |
commit | e78bac35cc0ddf7cab7c90e7be05491d0d3c58db (patch) | |
tree | 0a9ce1f0a396ef6a42d3ecd0ba79bf98d997e08b /tools | |
parent | 3c889c694dbc4d256a30ee0e794ccfff7ac950ad (diff) |
dbus-monitor: Keep parameter list of method returns in --monitor mode in sync with --profile mode.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=88896
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dbus-print-message.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/dbus-print-message.c b/tools/dbus-print-message.c index e4b8c8a6..27c88964 100644 --- a/tools/dbus-print-message.c +++ b/tools/dbus-print-message.c @@ -559,7 +559,8 @@ print_message (DBusMessage *message, dbus_bool_t literal) break; case DBUS_MESSAGE_TYPE_METHOD_RETURN: - printf (" reply_serial=%u\n", + printf (" serial=%u reply_serial=%u\n", + dbus_message_get_serial (message), dbus_message_get_reply_serial (message)); break; |