aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/libutil/mem_pool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/mem_pool.h b/src/libutil/mem_pool.h
index 7e71925ce..1befd8445 100644
--- a/src/libutil/mem_pool.h
+++ b/src/libutil/mem_pool.h
@@ -19,7 +19,7 @@
struct f_str_s;
-#define MEM_ALIGNMENT sizeof(unsigned long) /* platform word */
+#define MEM_ALIGNMENT 16 /* Better for SSE */
#define align_ptr(p, a) \
(guint8 *) (((uintptr_t) (p) + ((uintptr_t) a - 1)) & ~((uintptr_t) a - 1))