diff --git a/AK/BumpAllocator.h b/AK/BumpAllocator.h index 9f67fe4627..e206842e2a 100644 --- a/AK/BumpAllocator.h +++ b/AK/BumpAllocator.h @@ -125,7 +125,7 @@ protected: return true; } - constexpr static FlatPtr chunk_magic = sizeof(FlatPtr) == sizeof(u32) ? 0xdfdfdfdfu : 0xdfdfdfdfdfdfdfdfull; + constexpr static FlatPtr chunk_magic = explode_byte(0xdf); struct ChunkHeader { FlatPtr magic; FlatPtr next_chunk;