commit | 319f078d6f22c648a814612a4232c499223d89f0 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sun Oct 21 06:52:11 2018 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sun Oct 21 06:56:57 2018 +0200 |
tree | d98f1348462399410b26c473db1de77da3ec61e7 | |
parent | d846c267d5515713458e76d88bc9cbf358058b86 [diff] |
MINOR: ebtree: save 8 bytes in struct eb32sc_node There is a 4-bytes hole in this structure after the eb_node and the last field is 4-bytes as well, resulting in a total of 64 bytes with 8 bytes holes. Just moving the key after the eb_node (like in eb32_node) fills the hole and reduces the structure's size by 8 bytes.