mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-09 20:29:26 -04:00
Halve size of struct lz_match
This commit is contained in:
parent
992eb78578
commit
d1e4d4cab8
@ -64,10 +64,10 @@
|
|||||||
struct lz_match {
|
struct lz_match {
|
||||||
|
|
||||||
/* The number of bytes matched. */
|
/* The number of bytes matched. */
|
||||||
u32 length;
|
u16 length;
|
||||||
|
|
||||||
/* The offset back from the current position that was matched. */
|
/* The offset back from the current position that was matched. */
|
||||||
u32 offset;
|
u16 offset;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct bt_matchfinder {
|
struct bt_matchfinder {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user