Merge pull request #3238 from oranagra/struct_fix

reduce struct padding by reordering members
This commit is contained in:
Salvatore Sanfilippo 2016-05-17 00:49:11 -07:00
commit b1b1f4e8e8

View File

@ -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;