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:
Sean Davis
2016-09-19 16:06:03 -05:00
committed by GitHub
parent aa87e08cc7
commit 316387f619

View File

@@ -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,