summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp69/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp69/init.c')
-rw-r--r--testsuites/sptests/sp69/init.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuites/sptests/sp69/init.c b/testsuites/sptests/sp69/init.c
index 3e0343d7e6..3cb0fc9d2b 100644
--- a/testsuites/sptests/sp69/init.c
+++ b/testsuites/sptests/sp69/init.c
@@ -107,12 +107,13 @@ rtems_task Init(
/* Check status values. */
#ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__
+ /* Note: POSIX mandates struct timespec->tv_nsec to be a "long" */
printf(
- "wall time should be ~600000000 is %" PRId32 "\n",
+ "wall time should be ~600000000 is %ld\n",
period_status.since_last_period.tv_nsec
);
printf(
- "cpu time should be ~100000000 is %" PRId32 "\n",
+ "cpu time should be ~100000000 is %ld\n",
period_status.executed_since_last_period.tv_nsec
);
rtems_test_assert( period_status.since_last_period.tv_sec == 0 );