From ae1dd6454806bb7a6690f6fe79d1c558235f641a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 25 Sep 2025 19:13:05 -0500 Subject: [PATCH] cpukit/libtest/testparallel.c: Address unused parameter warnings Add "(void) param;" annotation to address unused parameter warnings. Found with GCC's warning -Wunused-paramter. --- cpukit/libtest/testparallel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpukit/libtest/testparallel.c b/cpukit/libtest/testparallel.c index 1406ddee10..2f73c3aee1 100644 --- a/cpukit/libtest/testparallel.c +++ b/cpukit/libtest/testparallel.c @@ -36,6 +36,8 @@ static void stop_worker_timer(rtems_id timer_id, void *arg) { + (void) timer_id; + rtems_test_parallel_context *ctx = arg; _Atomic_Store_ulong(&ctx->stop, 1, ATOMIC_ORDER_RELAXED);