From 3088ceea8059157de9e5b7e2113c6fbee09cf7a3 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Sat, 18 Oct 2008 19:16:57 +0000 Subject: [PATCH] Remove five carriage returns introduced in r8665, so the expected outputs match the actual outputs again. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8675 --- exp-ptrcheck/tests/unaligned.c | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/exp-ptrcheck/tests/unaligned.c b/exp-ptrcheck/tests/unaligned.c index fb62ddc769..181e9176e1 100644 --- a/exp-ptrcheck/tests/unaligned.c +++ b/exp-ptrcheck/tests/unaligned.c @@ -10,16 +10,11 @@ int main ( void ) char c0[8], c1[8], c2[8], c3[8], c4[8]; // Each of these pointers has a different alignment - char** p0 = (char**)&c0[0]; - char** p1 = (char**)&c1[1]; - char** p2 = (char**)&c2[2]; - char** p3 = (char**)&c3[3]; + char** p0 = (char**)&c0[0]; char** p1 = (char**)&c1[1]; + char** p2 = (char**)&c2[2]; char** p3 = (char**)&c3[3]; char** p4 = (char**)&c4[4]; - *p0 = x; - *p1 = x; - *p2 = x; - *p3 = x; - *p4 = x; + *p0 = x; *p1 = x; *p2 = x; + *p3 = x; *p4 = x; // These 10 are ok c = (*p0)[0]; -- 2.47.2