add missing "void" in prototype.
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
This commit is contained in:
parent
15f77f2cae
commit
706a8af015
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ static int gcd(int a, int b)
|
|||
return a;
|
||||
}
|
||||
|
||||
void setup_test_framework()
|
||||
void setup_test_framework(void)
|
||||
{
|
||||
char *TAP_levels = getenv("HARNESS_OSSL_LEVEL");
|
||||
char *test_seed = getenv("OPENSSL_TEST_RAND_ORDER");
|
||||
|
|
Loading…
Reference in a new issue