From 5d7900c4aaf92985532f82c4964d138c5e3bb556 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 6 Oct 2023 17:55:35 +0200 Subject: [PATCH] pulse-server: prefix nonstandard messages with pipewire-pulse: --- src/modules/module-protocol-pulse/message-handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/module-protocol-pulse/message-handler.c b/src/modules/module-protocol-pulse/message-handler.c index a4a003fd9..07132c102 100644 --- a/src/modules/module-protocol-pulse/message-handler.c +++ b/src/modules/module-protocol-pulse/message-handler.c @@ -106,11 +106,11 @@ static int core_object_message_handler(struct client *client, struct pw_manager_ } fputc(']', response); #ifdef HAVE_MALLOC_INFO - } else if (spa_streq(message, "malloc-info")) { + } else if (spa_streq(message, "pipewire-pulse:malloc-info")) { malloc_info(0, response); #endif #ifdef HAVE_MALLOC_TRIM - } else if (spa_streq(message, "malloc-trim")) { + } else if (spa_streq(message, "pipewire-pulse:malloc-trim")) { int res = malloc_trim(0); fprintf(response, "%d", res); #endif