summaryrefslogtreecommitdiffstats
path: root/test/testutil/driver.c
diff options
context:
space:
mode:
authorChristos Zoulas <christos@zoulas.com>2018-09-30 22:55:05 +0200
committerViktor Dukhovni <openssl-users@dukhovni.org>2018-12-10 04:02:49 +0100
commit706a8af01556334dd250b6d252536e78fa8f9063 (patch)
tree4ef17511db0e6a49212d8fbc289b91a2096f8a99 /test/testutil/driver.c
parentadd missing const in cast (diff)
downloadopenssl-706a8af01556334dd250b6d252536e78fa8f9063.tar.xz
openssl-706a8af01556334dd250b6d252536e78fa8f9063.zip
add missing "void" in prototype.
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to '')
-rw-r--r--test/testutil/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testutil/driver.c b/test/testutil/driver.c
index 95b40be324..3e80a7cb9c 100644
--- a/test/testutil/driver.c
+++ b/test/testutil/driver.c
@@ -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");