From e45e0d2e5b40badb639e95ee85e82d02c2a8d516 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 29 Oct 2025 04:44:27 +0100 Subject: [PATCH] validation: Address unused parameter Mark the parameter as unused in uniprocessor configurations. --- testsuites/validation/tr-tq-surrender-priority-inherit.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testsuites/validation/tr-tq-surrender-priority-inherit.c b/testsuites/validation/tr-tq-surrender-priority-inherit.c index 703e249e43..7fd194f02e 100644 --- a/testsuites/validation/tr-tq-surrender-priority-inherit.c +++ b/testsuites/validation/tr-tq-surrender-priority-inherit.c @@ -733,6 +733,8 @@ static void CleanupSticky( Context *ctx ) } T_eq_u32( rtems_scheduler_get_processor(), 0 ); +#else + (void) ctx; #endif }