1
0
mirror of https://github.com/fluencelabs/redis synced 2025-03-19 09:00:51 +00:00

reduce struct padding by reordering members

This commit is contained in:
oranagra 2016-05-16 20:12:11 +03:00
parent 9aff564045
commit 283a8125cb

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