mirror of
https://github.com/facebook/zstd.git
synced 2025-03-06 16:56:49 +02:00
fix minor Visual warning
This commit is contained in:
parent
aacace37f7
commit
d6914bfd5a
@ -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…
x
Reference in New Issue
Block a user