From 64be5bb617cb869431d304cc730f9de78d069991 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 25 Nov 2020 21:05:49 +0100 Subject: [PATCH] pulse-server: fix debug line --- src/modules/module-protocol-pulse/ext-stream-restore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/module-protocol-pulse/ext-stream-restore.c b/src/modules/module-protocol-pulse/ext-stream-restore.c index 0da17b02c..79e09aa5f 100644 --- a/src/modules/module-protocol-pulse/ext-stream-restore.c +++ b/src/modules/module-protocol-pulse/ext-stream-restore.c @@ -291,8 +291,8 @@ static int do_extension_stream_restore(struct client *client, uint32_t tag, stru if (ext_stream_restore[command].process == NULL) return -EPROTO; - pw_log_info(NAME" %p: [EXT_STREAM_RESTORE_%s] %s tag:%u", impl, client->name, - ext_stream_restore[command].name, tag); + pw_log_info(NAME" %p: [%s] EXT_STREAM_RESTORE_%s tag:%u", impl, + client->name, ext_stream_restore[command].name, tag); return ext_stream_restore[command].process(client, command, tag, m); }