summaryrefslogtreecommitdiff
path: root/test/testutil
diff options
context:
space:
mode:
authorChristos Zoulas <christos@zoulas.com>2018-09-30 16:55:05 -0400
committerViktor Dukhovni <openssl-users@dukhovni.org>2018-12-09 22:02:49 -0500
commit706a8af01556334dd250b6d252536e78fa8f9063 (patch)
tree4ef17511db0e6a49212d8fbc289b91a2096f8a99 /test/testutil
parent15f77f2cae7f845811fbeabafe620a3b1d6315d8 (diff)
downloadopenssl-new-706a8af01556334dd250b6d252536e78fa8f9063.tar.gz
add missing "void" in prototype.
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'test/testutil')
-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");