summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-03-26 22:58:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-03-26 22:58:09 +0000
commitf588903f1229c1b42cb60a54bcf506bd96bf593b (patch)
tree5ccc81a1108036e55601cf33d049413f7371e96e /testsuites
parent2007-03-26 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-f588903f1229c1b42cb60a54bcf506bd96bf593b.tar.bz2
2007-03-26 Joel Sherrill <joel@OARcorp.com>
* sp35/priinv.c: Remove warning.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/sptests/ChangeLog4
-rw-r--r--testsuites/sptests/sp35/priinv.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog
index 5530c5c14f..d47db4558b 100644
--- a/testsuites/sptests/ChangeLog
+++ b/testsuites/sptests/ChangeLog
@@ -1,3 +1,7 @@
+2007-03-26 Joel Sherrill <joel@OARcorp.com>
+
+ * sp35/priinv.c: Remove warning.
+
2007-03-10 Joel Sherrill <joel@OARcorp.com>
* sp26/system.h: Remove incorrect and duplicate
diff --git a/testsuites/sptests/sp35/priinv.c b/testsuites/sptests/sp35/priinv.c
index 8f3263fd97..6115e4df42 100644
--- a/testsuites/sptests/sp35/priinv.c
+++ b/testsuites/sptests/sp35/priinv.c
@@ -82,7 +82,7 @@ const char *CallerName()
#if defined(TEST_ON_RTEMS_45)
TempName.u = *(uint32_t *)_Thread_Executing->Object.name;
#else
- TempName.u = _Thread_Executing->Object.name;
+ TempName.u = (uint32_t) _Thread_Executing->Object.name;
#endif
sprintf( buffer, "%c%c%c%c -- %d",
TempName.c[0], TempName.c[1], TempName.c[2], TempName.c[3],