From cd4ad0c67a0b90d73cb9d3c2ee0bca00e4ad6373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Wed, 5 Jan 2022 09:54:37 +0100 Subject: [PATCH] No need to call a function to avoid a warning. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Manuel Pégourié-Gonnard --- programs/test/benchmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/test/benchmark.c b/programs/test/benchmark.c index 88616d6604..2797c1463f 100644 --- a/programs/test/benchmark.c +++ b/programs/test/benchmark.c @@ -629,7 +629,7 @@ int main( int argc, char *argv[] ) /* Avoid "unused static function" warning in configurations without * symmetric crypto. */ - (void) mbedtls_timing_hardclock( ); + (void) mbedtls_timing_hardclock; #if defined(MBEDTLS_MD5_C) if( todo.md5 )