summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp19
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-01-05 19:44:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-01-05 19:44:53 +0000
commit29a83352f633d9cbb06d547afab25dd892750eee (patch)
tree364c9da319314bcc26e7495ffbe4599824f13092 /testsuites/sptests/sp19
parent2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-29a83352f633d9cbb06d547afab25dd892750eee.tar.bz2
2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp15/system.h, sp19/system.h: Array of task names should be of type rtems_name not rtems_id. Similarly array of task ids should be rtems_id not rtems_name.
Diffstat (limited to 'testsuites/sptests/sp19')
-rw-r--r--testsuites/sptests/sp19/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/sp19/system.h b/testsuites/sptests/sp19/system.h
index b79409defe..b6ff1ace01 100644
--- a/testsuites/sptests/sp19/system.h
+++ b/testsuites/sptests/sp19/system.h
@@ -50,8 +50,8 @@ rtems_task Task_1(
/* global variables */
-TEST_EXTERN rtems_id Task_id[ 7 ]; /* array of task ids */
-TEST_EXTERN rtems_id Task_name[ 7 ]; /* array of task names */
+TEST_EXTERN rtems_id Task_id[ 7 ]; /* array of task ids */
+TEST_EXTERN rtems_name Task_name[ 7 ]; /* array of task names */
TEST_EXTERN double FP_factors[ 10 ]; /* FP "uniqueness" factors */