diff --git a/memcheck/tests/memalign_test.c b/memcheck/tests/memalign_test.c index e64946280..f7fd8554f 100644 --- a/memcheck/tests/memalign_test.c +++ b/memcheck/tests/memalign_test.c @@ -10,8 +10,7 @@ int main ( void ) int i; unsigned long pszB = sysconf(_SC_PAGE_SIZE); assert(sizeof(long) == sizeof(void*)); - assert(pszB == 4096 || pszB == 8192 || pszB == 16384 || pszB == 32768 - || pszB == 65536); + assert(pszB == 4096 || pszB == 8192 || pszB == 16384 || pszB == 32768 || pszB == 65536); /* All on one line to match linenumbers in the .exp file. */ for (i = 0; i < 10; i++) { a[i] = valloc(11111 * (i+1));