fixes for @terrelln comments

This commit is contained in:
Yann Collet
2018-01-18 11:15:23 -08:00
parent aa79c18e3f
commit c7190c69cc
3 changed files with 8 additions and 6 deletions
+3 -3
View File
@@ -170,9 +170,9 @@ struct ZSTD_CCtx_s {
void* workSpace;
size_t workSpaceSize;
size_t blockSize;
U64 pledgedSrcSizePlusOne; /* this way, 0 (default) == unknown */
U64 consumedSrcSize;
U64 producedCSize;
unsigned long long pledgedSrcSizePlusOne; /* this way, 0 (default) == unknown */
unsigned long long consumedSrcSize;
unsigned long long producedCSize;
XXH64_state_t xxhState;
ZSTD_customMem customMem;
size_t staticSize;