summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem.c b/src/mem.c
index 572f2be..99a229a 100644
--- a/src/mem.c
+++ b/src/mem.c
@@ -195,7 +195,7 @@
* bit is always 0. Therefore, this bit is used to store the allocation flag.
*/
struct mem_btag {
- size_t value;
+ size_t value __aligned(MEM_ALIGN);
};
/*