testsuites/sptests: Address unused parameter warnings

Add "(void) param;" annotation to address unused parameter warnings.
Found with GCC's warning -Wunused-parameter.
This commit is contained in:
Joel Sherrill
2025-10-10 14:29:21 -05:00
committed by Gedare Bloom
parent 107c00a4a9
commit 0589d7291a

View File

@@ -45,6 +45,8 @@ const char rtems_test_name[] = "SPFATAL 35";
static void Init( rtems_task_argument arg ) static void Init( rtems_task_argument arg )
{ {
(void) arg;
TEST_BEGIN(); TEST_BEGIN();
_CPU_Instruction_illegal(); _CPU_Instruction_illegal();
TEST_END(); TEST_END();