mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
fix minor Visual warning
This commit is contained in:
parent
aacace37f7
commit
d6914bfd5a
1 changed files with 1 additions and 1 deletions
|
|
@ -944,7 +944,7 @@ static size_t ZSTD_compressBlock(void* ctx, void* dst, size_t maxDstSize, const
|
|||
const BYTE* const ilimit = iend - 16;
|
||||
|
||||
U32 *op_offset = (U32*)(workplace), *op_offset_start = op_offset;
|
||||
BYTE *op_l = workplace + srcSize + 4, *op_l_start = op_l;
|
||||
BYTE *op_l = (BYTE*)workplace + srcSize + 4, *op_l_start = op_l;
|
||||
BYTE *op_rl = op_l + srcSize + 4, *op_rl_start = op_rl;
|
||||
BYTE *op_ml = op_rl + (srcSize >> 2) + 4, *op_ml_start = op_ml;
|
||||
BYTE *op_dumps = op_ml + (srcSize >> 2) + 4, *op_dumps_start = op_dumps;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue