diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-05-06 23:09:36 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-06 23:09:36 +0200 |
commit | 8d8135a3c3319f5e7602686aad16a9d18f948b39 (patch) | |
tree | 14862998405c030b510e0866cec3c3457e359ae1 /components/entropy.c | |
parent | 76c8152d44ea96cbd31426491537f075123af9c2 (diff) |
entropy: Small fix
Diffstat (limited to 'components/entropy.c')
-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 1450b31..ac61679 100644 --- a/components/entropy.c +++ b/components/entropy.c @@ -17,6 +17,7 @@ const char * entropy(void) { - return "∞"; + /* Unicode Character 'INFINITY' (U+221E) */ + return "\xe2\x88\x9e"; } #endif |