From 12bd4e141eac30543a790156154deca195ace1b7 Mon Sep 17 00:00:00 2001 From: "Dr. Matthias St. Pierre" Date: Thu, 21 Jun 2018 23:32:38 +0200 Subject: [PATCH] testutil/driver.c: Fix function prototype warning [-Wstrict-prototypes] (introduced by commit 91860165820d, which added -Wstrict-prototypes) Reviewed-by: Richard Levitte Reviewed-by: Kurt Roeckx (Merged from https://github.com/openssl/openssl/pull/6555) --- test/testutil/driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testutil/driver.c b/test/testutil/driver.c index 8d483336ff..09907347f1 100644 --- a/test/testutil/driver.c +++ b/test/testutil/driver.c @@ -74,7 +74,7 @@ int subtest_level(void) } #ifndef OPENSSL_NO_CRYPTO_MDEBUG -static int should_report_leaks() +static int should_report_leaks(void) { /* * When compiled with enable-crypto-mdebug, OPENSSL_DEBUG_MEMORY=0 -- GitLab