From 2aee424b7b32dd27059730e427164b8f63bf5df3 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 24 Aug 2018 02:09:20 -0400 Subject: [PATCH] fix inconsistent whitespace --- malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malloc.c b/malloc.c index 7df1ecc..aff2fbf 100644 --- a/malloc.c +++ b/malloc.c @@ -24,7 +24,7 @@ static_assert(sizeof(void *) == 8, "64-bit only"); #define PAGE_CEILING(s) (((s) + PAGE_MASK) & ~PAGE_MASK) #define MIN_ALIGN 16 -#define ALIGNMENT_CEILING(s, alignment) (((s) + (alignment - 1)) & ((~(alignment)) + 1)) +#define ALIGNMENT_CEILING(s, alignment) (((s) + (alignment - 1)) & ((~(alignment)) + 1)) static const size_t guard_size = PAGE_SIZE;