diff options
author | planet36 <planet36@users.noreply.github.com> | 2022-10-28 10:49:05 -0500 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-12-19 02:44:21 +0100 |
commit | 581d937e51d10e6e74868d2397081b12952eae07 (patch) | |
tree | 4dbcbf5a8e685bacb163a7c30c943108d318ffb9 | |
parent | c225c4315161a992b9e44dd990d083ee57f7f713 (diff) | |
download | slstatus-581d937e51d10e6e74868d2397081b12952eae07.tar.gz |
entropy: Use Unicode escape sequence in string
Signed-off-by: drkhsh <me@drkhsh.at>
-rw-r--r-- | components/entropy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/entropy.c b/components/entropy.c index 66b2e5a..65010b0 100644 --- a/components/entropy.c +++ b/components/entropy.c @@ -22,7 +22,8 @@ const char * entropy(const char *unused) { + // https://www.unicode.org/charts/PDF/U2200.pdf /* Unicode Character 'INFINITY' (U+221E) */ - return "\xe2\x88\x9e"; + return "\u221E"; } #endif |