summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smpschedaffinity04
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-08-10 14:29:55 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-08-22 14:18:58 +0200
commita8f4fd2872784cea12888a3e53d62b74d3e78608 (patch)
tree62843631c17165e0c428bbffc16845443519cef1 /testsuites/smptests/smpschedaffinity04
parentheap: Fix integer types (diff)
downloadrtems-a8f4fd2872784cea12888a3e53d62b74d3e78608.tar.bz2
smptests: Fix format specifier
Update #3082.
Diffstat (limited to 'testsuites/smptests/smpschedaffinity04')
-rw-r--r--testsuites/smptests/smpschedaffinity04/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/smptests/smpschedaffinity04/init.c b/testsuites/smptests/smpschedaffinity04/init.c
index e4df282a54..c7a071f054 100644
--- a/testsuites/smptests/smpschedaffinity04/init.c
+++ b/testsuites/smptests/smpschedaffinity04/init.c
@@ -114,7 +114,7 @@ static void test(void)
/*
* Verify the Init task is running on the max core.
*/
- printf("Verify Init task is on cpu %ld\n",cpu_count-1);
+ printf("Verify Init task is on cpu %l" PRIu32 "\n",cpu_count-1);
cpu = rtems_get_current_processor();
rtems_test_assert(cpu == (cpu_count-1));