summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxsignal03
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-20 10:38:44 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-22 10:29:59 -0500
commite0437fe17ff5e104b25bc9fc750e921bbdeda7bb (patch)
tree637c0ba9b474cfa1c41532a287a55e90dc8d84c6 /testsuites/psxtests/psxsignal03
parentm32cbsp: Disable jffs2 and mrfs tests (diff)
downloadrtems-e0437fe17ff5e104b25bc9fc750e921bbdeda7bb.tar.bz2
testsuites/psxtests/psxsignal03/init.c: Fix line wrap
Diffstat (limited to 'testsuites/psxtests/psxsignal03')
-rw-r--r--testsuites/psxtests/psxsignal03/init.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxsignal03/init.c b/testsuites/psxtests/psxsignal03/init.c
index 253064f8bb..f3fc26672b 100644
--- a/testsuites/psxtests/psxsignal03/init.c
+++ b/testsuites/psxtests/psxsignal03/init.c
@@ -139,7 +139,11 @@ void *Test_Thread(void *arg)
* likely should use %p. However, this would render this test's
* behavior non-deterministic, because %p's behavior is
* "implementation defined" */
- printf( "%s - siginfo.si_value=0x%08" PRIxPTR "\n", name, (uintptr_t) info.si_value.sival_ptr );
+ printf(
+ "%s - siginfo.si_value=0x%08" PRIxPTR "\n",
+ name,
+ (uintptr_t) info.si_value.sival_ptr
+ );
rtems_test_assert( info.si_signo == SIGNAL_TWO );
rtems_test_assert( info.si_code == SI_USER );