diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-12-10 21:30:39 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-12-11 21:46:23 +0100 |
commit | 5e13bcdd0391c84423533cc98bb565ad7bb635ec (patch) | |
tree | 14e525b923b79c68a533c2f578a90c4abaf20558 /src/basic/locale-util.c | |
parent | minor: avoid double title (diff) | |
download | systemd-5e13bcdd0391c84423533cc98bb565ad7bb635ec.tar.xz systemd-5e13bcdd0391c84423533cc98bb565ad7bb635ec.zip |
locale-util: drop weird invisible unicode codepoints accidentally inserted in comment
Diffstat (limited to '')
-rw-r--r-- | src/basic/locale-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/locale-util.c b/src/basic/locale-util.c index b3c5805784..457280df9f 100644 --- a/src/basic/locale-util.c +++ b/src/basic/locale-util.c @@ -377,7 +377,7 @@ const char *special_glyph(SpecialGlyph code) { [SPECIAL_GLYPH_SLIGHTLY_HAPPY_SMILEY] = "\360\237\231\202", /* 🙂 */ [SPECIAL_GLYPH_NEUTRAL_SMILEY] = "\360\237\230\220", /* 😐 */ [SPECIAL_GLYPH_SLIGHTLY_UNHAPPY_SMILEY] = "\360\237\231\201", /* 🙁 */ - [SPECIAL_GLYPH_UNHAPPY_SMILEY] = "\360\237\230\250", /* 😨️️ */ + [SPECIAL_GLYPH_UNHAPPY_SMILEY] = "\360\237\230\250", /* 😨 */ [SPECIAL_GLYPH_DEPRESSED_SMILEY] = "\360\237\244\242", /* 🤢 */ }, }; |