From 283a8125cb85524ce6df6ac9b4edbda23124d95d Mon Sep 17 00:00:00 2001 From: oranagra Date: Mon, 16 May 2016 20:12:11 +0300 Subject: [PATCH] reduce struct padding by reordering members --- src/quicklist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quicklist.h b/src/quicklist.h index 5c9530cc..e040368e 100644 --- a/src/quicklist.h +++ b/src/quicklist.h @@ -92,8 +92,8 @@ typedef struct quicklistEntry { quicklistNode *node; unsigned char *zi; unsigned char *value; - unsigned int sz; long long longval; + unsigned int sz; int offset; } quicklistEntry;