summaryrefslogtreecommitdiffstats
path: root/src/pulsemixer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pulsemixer.c')
-rw-r--r--src/pulsemixer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsemixer.c b/src/pulsemixer.c
index 3f6342e..3352c1d 100644
--- a/src/pulsemixer.c
+++ b/src/pulsemixer.c
@@ -201,7 +201,7 @@ static void gst_pulsemixer_get_property(
case PROP_DEVICE_NAME:
if (this->mixer) {
- char *t = g_strdup_printf("%s - %s [%s]", this->mixer->type == GST_PULSEMIXER_SINK ? "Playback" : "Capture", this->mixer->description, this->mixer->name);
+ char *t = g_strdup_printf("%s: %s", this->mixer->type == GST_PULSEMIXER_SINK ? "Playback" : "Capture", this->mixer->description);
g_value_set_string(value, t);
g_free(t);
} else