From 03fd89abeab5540251bede5015d0d85d76eaa71b Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 15 Apr 2026 11:20:18 +0200 Subject: [PATCH] alsa-seq: add : between client and port name The separator is important for applications to find the client name and group ports. Fixes #5229 --- spa/plugins/alsa/alsa-seq-bridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/alsa/alsa-seq-bridge.c b/spa/plugins/alsa/alsa-seq-bridge.c index 7c887c573..977c74e0a 100644 --- a/spa/plugins/alsa/alsa-seq-bridge.c +++ b/spa/plugins/alsa/alsa-seq-bridge.c @@ -261,7 +261,7 @@ static void emit_port_info(struct seq_state *this, struct seq_port *port, bool f if (spa_strstartswith(pn, client_name)) pn += strlen(client_name); - snprintf(name, sizeof(name), "%s%s%s (%s)", prefix, + snprintf(name, sizeof(name), "%s%s:%s (%s)", prefix, client_name, pn, dir); clean_name(name);