From 78984e439553f5e6eeb97c90ec1df9141fbe91d8 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 28 Oct 2009 23:28:12 +0100 Subject: pactl: format cookie a little bit nicer --- src/utils/pactl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/utils/pactl.c') diff --git a/src/utils/pactl.c b/src/utils/pactl.c index 7ef02ec9..ee67c425 100644 --- a/src/utils/pactl.c +++ b/src/utils/pactl.c @@ -180,7 +180,7 @@ static void get_server_info_callback(pa_context *c, const pa_server_info *i, voi "Default Channel Map: %s\n" "Default Sink: %s\n" "Default Source: %s\n" - "Cookie: %08x\n"), + "Cookie: %04x:%04x\n"), i->user_name, i->host_name, i->server_name, @@ -189,7 +189,8 @@ static void get_server_info_callback(pa_context *c, const pa_server_info *i, voi cm, i->default_sink_name, i->default_source_name, - i->cookie); + i->cookie >> 16, + i->cookie & 0xFFFFU); complete_action(); } -- cgit