summaryrefslogtreecommitdiffstats
path: root/lib/gzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gzip.c')
-rw-r--r--lib/gzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gzip.c b/lib/gzip.c
index ff37d4f31b..cd8e9fea43 100644
--- a/lib/gzip.c
+++ b/lib/gzip.c
@@ -25,7 +25,7 @@ static void *zalloc(void *x, unsigned items, unsigned size)
size *= items;
size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);
- p = malloc (size);
+ p = malloc_cache_aligned(size);
return (p);
}
OpenPOWER on IntegriCloud