reduce struct padding by reordering members

This commit is contained in:
oranagra 2016-05-16 20:12:11 +03:00 committed by antirez
parent a7f0fb448c
commit cb3e89e2cb

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;