[rtems commit] validation: Fix variable type

Sebastian Huber sebh at rtems.org
Wed Aug 9 04:55:29 UTC 2023


Module:    rtems
Branch:    master
Commit:    9a975e52113ad46e27557c23b50af6d3b42156fa
Changeset: http://git.rtems.org/rtems/commit/?id=9a975e52113ad46e27557c23b50af6d3b42156fa

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Tue Aug  8 17:05:01 2023 +0200

validation: Fix variable type

This fixes test failures on targets using short enums.

Update #3716.

---

 testsuites/validation/tc-task.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testsuites/validation/tc-task.c b/testsuites/validation/tc-task.c
index ce1c5ffd8b..5ab96445ed 100644
--- a/testsuites/validation/tc-task.c
+++ b/testsuites/validation/tc-task.c
@@ -303,7 +303,7 @@ static void RtemsTaskValTask_Action_8( void )
 static void RtemsTaskValTask_Action_9( void )
 {
   rtems_status_code sc;
-  rtems_status_code id;
+  rtems_id          id;
 
   /*
    * Create a task.  Check that the home scheduler of the created task is



More information about the vc mailing list