testsuites/libtests: 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:30:11 -05:00
committed by Gedare Bloom
parent 0589d7291a
commit 56805ae4be
2 changed files with 4 additions and 0 deletions

View File

@@ -61,6 +61,8 @@ const char rtems_test_name[] = "DEBUGGER01";
rtems_task Init(rtems_task_argument argument)
{
(void) argument;
TEST_BEGIN();
test();

View File

@@ -62,6 +62,8 @@ static int test(void)
static void Init(rtems_task_argument arg)
{
(void) arg;
int te;
TEST_BEGIN();