summaryrefslogtreecommitdiffstats
path: root/lib/lz4.h
diff options
context:
space:
mode:
authorW. Felix Handte <w@felixhandte.com>2020-08-06 20:06:40 (GMT)
committerW. Felix Handte <w@felixhandte.com>2020-08-06 20:06:40 (GMT)
commit9af86f084101b08e87e7c1509e19aa05d27271ed (patch)
tree0e6a1296ad6242f872396fb4872254ea3b3d8978 /lib/lz4.h
parentd7399232a4d547d7183c193997e17d534d000f52 (diff)
downloadlz4-9af86f084101b08e87e7c1509e19aa05d27271ed.zip
lz4-9af86f084101b08e87e7c1509e19aa05d27271ed.tar.gz
lz4-9af86f084101b08e87e7c1509e19aa05d27271ed.tar.bz2
Remove dirty Field From LZ4_stream_t
Diffstat (limited to 'lib/lz4.h')
-rw-r--r--lib/lz4.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 32108e2..9b3d758 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -564,8 +564,7 @@ typedef struct LZ4_stream_t_internal LZ4_stream_t_internal;
struct LZ4_stream_t_internal {
uint32_t hashTable[LZ4_HASH_SIZE_U32];
uint32_t currentOffset;
- uint16_t dirty;
- uint16_t tableType;
+ uint32_t tableType;
const uint8_t* dictionary;
const LZ4_stream_t_internal* dictCtx;
uint32_t dictSize;
@@ -584,8 +583,7 @@ typedef struct LZ4_stream_t_internal LZ4_stream_t_internal;
struct LZ4_stream_t_internal {
unsigned int hashTable[LZ4_HASH_SIZE_U32];
unsigned int currentOffset;
- unsigned short dirty;
- unsigned short tableType;
+ unsigned int tableType;
const unsigned char* dictionary;
const LZ4_stream_t_internal* dictCtx;
unsigned int dictSize;