fix inconsistent whitespace

This commit is contained in:
Daniel Micay 2018-08-24 02:09:20 -04:00
parent a874a61099
commit 2aee424b7b
1 changed files with 1 additions and 1 deletions

View File

@ -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;