26 lines
850 B
Diff
26 lines
850 B
Diff
From 71270658311ae22922dc98dad79b835f6d62e4bd Mon Sep 17 00:00:00 2001
|
|
From: peijiankang <peijiankang@kylinos.cn>
|
|
Date: Mon, 20 Jun 2022 10:48:08 +0800
|
|
Subject: [PATCH] fix translation error of pulseaudio
|
|
|
|
---
|
|
src/modules/alsa/alsa-mixer.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/modules/alsa/alsa-mixer.c b/src/modules/alsa/alsa-mixer.c
|
|
index 7b755ce..49c3968 100644
|
|
--- a/src/modules/alsa/alsa-mixer.c
|
|
+++ b/src/modules/alsa/alsa-mixer.c
|
|
@@ -2838,7 +2838,7 @@ static int path_verify(pa_alsa_path *p) {
|
|
if (p->device_port_type == PA_DEVICE_PORT_TYPE_UNKNOWN)
|
|
p->device_port_type = map->type;
|
|
if (!p->description)
|
|
- p->description = pa_xstrdup(map->description);
|
|
+ p->description = pa_xstrdup(_(map->description));
|
|
}
|
|
|
|
if (!p->description) {
|
|
--
|
|
2.33.0
|
|
|