From d1e4d4cab8da0e72aec4534dfa8ec6bf6a9fbfa9 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Mon, 23 May 2016 21:24:58 -0500 Subject: [PATCH] Halve size of struct lz_match --- lib/bt_matchfinder.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bt_matchfinder.h b/lib/bt_matchfinder.h index 4c2ff09..7c1217f 100644 --- a/lib/bt_matchfinder.h +++ b/lib/bt_matchfinder.h @@ -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 {