Halve size of struct lz_match

This commit is contained in:
Eric Biggers 2016-05-23 21:24:58 -05:00
parent 992eb78578
commit d1e4d4cab8

View File

@ -64,10 +64,10 @@
struct lz_match {
/* The number of bytes matched. */
u32 length;
u16 length;
/* The offset back from the current position that was matched. */
u32 offset;
u16 offset;
};
struct bt_matchfinder {