about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--malloc/tst-mallocalign1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/tst-mallocalign1.c b/malloc/tst-mallocalign1.c
index 3116748e7e..ed88c244e2 100644
--- a/malloc/tst-mallocalign1.c
+++ b/malloc/tst-mallocalign1.c
@@ -32,7 +32,7 @@ test (size_t s)
   return p;
 }
 
-#define ALIGNED(p) (((uintptr_t )p & MALLOC_ALIGN_MASK) == 0)
+#define ALIGNED(p) (((uintptr_t) p & MALLOC_ALIGN_MASK) == 0)
 
 static int
 do_test (void)