Fix typo in rand-fortuna.c
`__GNUC__` was written as `__GUNC__`, which could have interesting results as it'll never be defined.
This commit is contained in:
@@ -622,7 +622,7 @@ fortuna_status(void)
|
||||
return result ? 1 : 0;
|
||||
}
|
||||
|
||||
#if defined(__GUNC__) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901)
|
||||
#if defined(__GNUC__) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901)
|
||||
const RAND_METHOD hc_rand_fortuna_method = {
|
||||
.seed = fortuna_seed,
|
||||
.bytes = fortuna_bytes,
|
||||
|
Reference in New Issue
Block a user