summaryrefslogtreecommitdiffstats
path: root/testsuites/support/include/tmacros.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-02-14 08:58:33 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-02-14 08:59:23 +0100
commitc341463c9788f3325641eef6f0239da9352b6d8d (patch)
tree8da7e940ff3f914bfdd995f4ae61b9a1116cecea /testsuites/support/include/tmacros.h
parentsppagesize: Include missing header file (diff)
downloadrtems-c341463c9788f3325641eef6f0239da9352b6d8d.tar.bz2
tmacros.h: Fix print defines
Diffstat (limited to 'testsuites/support/include/tmacros.h')
-rw-r--r--testsuites/support/include/tmacros.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/support/include/tmacros.h b/testsuites/support/include/tmacros.h
index d8aec2a520..4898aea046 100644
--- a/testsuites/support/include/tmacros.h
+++ b/testsuites/support/include/tmacros.h
@@ -317,11 +317,11 @@ extern "C" {
#endif
/* c.f. cpukit/score/include/rtems/score/priority.h */
-#define PRIdPriority_Control PRId32
-#define PRIxPriority_Control PRIx32
+#define PRIdPriority_Control PRIu64
+#define PRIxPriority_Control PRIx64
/* rtems_task_priority is a typedef to Priority_Control */
-#define PRIdrtems_task_priority PRIdPriority_Control
-#define PRIxrtems_task_priority PRIxPriority_Control
+#define PRIdrtems_task_priority PRIu32
+#define PRIxrtems_task_priority PRIx32
/* c.f. cpukit/score/include/rtems/score/watchdog.h */
#define PRIdWatchdog_Interval PRIu32