diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-10-29 21:52:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-10-29 21:52:40 +0100 |
| commit | 3a56fa86d04c631143a45bdb34cb0e570e4ca9fb (patch) | |
| tree | 8aafc97789d22eff5c3b8d9201b6ff0b85b766b6 /src/lib | |
| parent | 41f50eed8ca9b034fc4f6d5cbd1b3b475e9279e2 (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.cc | 4 |
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]; |
