diff options
author | W. Felix Handte <w@felixhandte.com> | 2020-08-06 20:06:40 (GMT) |
---|---|---|
committer | W. Felix Handte <w@felixhandte.com> | 2020-08-06 20:06:40 (GMT) |
commit | 9af86f084101b08e87e7c1509e19aa05d27271ed (patch) | |
tree | 0e6a1296ad6242f872396fb4872254ea3b3d8978 /lib/lz4.h | |
parent | d7399232a4d547d7183c193997e17d534d000f52 (diff) | |
download | lz4-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.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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; |