From 76abc43812ec2f3288edc2d254aca010f0ca29e5 Mon Sep 17 00:00:00 2001 From: David Garske Date: Mon, 27 Oct 2025 10:25:31 -0700 Subject: [PATCH] Put unused fix in correct location. --- wolfcrypt/benchmark/benchmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/benchmark/benchmark.c b/wolfcrypt/benchmark/benchmark.c index 7694d38b1..fbce752ee 100644 --- a/wolfcrypt/benchmark/benchmark.c +++ b/wolfcrypt/benchmark/benchmark.c @@ -15752,13 +15752,13 @@ void bench_sphincsKeySign(byte level, byte optim) double current_time(int reset) { portTickType tickCount = xTaskGetTickCount(); + (void)reset; /* if configTICK_RATE_HZ is available use if (default is 1000) */ #ifdef configTICK_RATE_HZ return (double)tickCount / configTICK_RATE_HZ; #else return (double)tickCount / 1000; #endif - (void)reset; } #endif