diff options
Diffstat (limited to 'components/entropy.c')
-rw-r--r-- | components/entropy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/entropy.c b/components/entropy.c index cf60bc3..0544749 100644 --- a/components/entropy.c +++ b/components/entropy.c @@ -7,7 +7,7 @@ #include "../util.h" const char * - entropy(void) + entropy(const char *unused) { uintmax_t num; @@ -20,7 +20,7 @@ } #elif defined(__OpenBSD__) | defined(__FreeBSD__) const char * - entropy(void) + entropy(const char *unused) { /* Unicode Character 'INFINITY' (U+221E) */ return "\xe2\x88\x9e"; |