commit fbbe300f4d52ab014fb09050deea7746b1d02a82 parent fd14804d6ffb212bb88bb5560508e38b6cf432fd Author: Aaron Marcher <me@drkhsh.at> Date: Sun, 6 May 2018 23:09:36 +0200 entropy: Small fix Diffstat:
M | components/entropy.c | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git 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