summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-10-29 21:52:40 +0100
committerCarl Hetherington <cth@carlh.net>2016-10-29 21:52:40 +0100
commit3a56fa86d04c631143a45bdb34cb0e570e4ca9fb (patch)
tree8aafc97789d22eff5c3b8d9201b6ff0b85b766b6 /src/lib
parent41f50eed8ca9b034fc4f6d5cbd1b3b475e9279e2 (diff)
Fix attempt to internationalise an empty string causing strange channel names in the mapping view.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc
index 38451e931..4eba58e05 100644
--- a/src/lib/util.cc
+++ b/src/lib/util.cc
@@ -533,8 +533,8 @@ short_audio_channel_name (int c)
_("BsR"),
_("DBP"),
_("DBS"),
- _(""),
- _("")
+ "",
+ ""
};
return channels[c];