mirror of https://mirror.osredm.com/root/redis.git
Merge pull request #3238 from oranagra/struct_fix
reduce struct padding by reordering members
This commit is contained in:
commit
b1b1f4e8e8
|
@ -92,8 +92,8 @@ typedef struct quicklistEntry {
|
||||||
quicklistNode *node;
|
quicklistNode *node;
|
||||||
unsigned char *zi;
|
unsigned char *zi;
|
||||||
unsigned char *value;
|
unsigned char *value;
|
||||||
unsigned int sz;
|
|
||||||
long long longval;
|
long long longval;
|
||||||
|
unsigned int sz;
|
||||||
int offset;
|
int offset;
|
||||||
} quicklistEntry;
|
} quicklistEntry;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue