alsa-seq: add : between client and port name

The separator is important for applications to find the client name and
group ports.

Fixes #5229
This commit is contained in:
Wim Taymans 2026-04-15 11:20:18 +02:00
parent 3277f3acfb
commit 03fd89abea

View file

@ -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);