summaryrefslogtreecommitdiffstats
path: root/lib/lz4.h
diff options
context:
space:
mode:
authorOleg Khabinov <khabinov@fb.com>2018-10-01 22:19:45 (GMT)
committerOleg Khabinov <khabinov@fb.com>2018-10-01 22:19:45 (GMT)
commit28eb88d9885810018cb79421ca7ce0462fd61df2 (patch)
tree5862ec1466bcef0fc80fa23a04f31fecf92f4b5c /lib/lz4.h
parentb18b6e53e16258cbdc4c24a387d9d4338006f827 (diff)
downloadlz4-28eb88d9885810018cb79421ca7ce0462fd61df2.zip
lz4-28eb88d9885810018cb79421ca7ce0462fd61df2.tar.gz
lz4-28eb88d9885810018cb79421ca7ce0462fd61df2.tar.bz2
Some followups and renamings
Diffstat (limited to 'lib/lz4.h')
-rw-r--r--lib/lz4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 346f0dc..7e89d5f 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -511,7 +511,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 dirtyContext;
+ uint16_t dirty;
uint16_t tableType;
const uint8_t* dictionary;
const LZ4_stream_t_internal* dictCtx;
@@ -531,7 +531,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 dirtyContext;
+ unsigned short dirty;
unsigned short tableType;
const unsigned char* dictionary;
const LZ4_stream_t_internal* dictCtx;