Fixed : minor clang warning

This commit is contained in:
Yann Collet
2015-10-25 19:42:03 +01:00
parent 083fcc82fc
commit 3a787da419
+1 -1
View File
@@ -128,7 +128,7 @@ size_t ZSTD_HC_freeCCtx(ZSTD_HC_CCtx* cctx)
static void ZSTD_HC_resetCCtx_advanced (ZSTD_HC_CCtx* zc,
const ZSTD_HC_parameters params, const void* start)
{
size_t maxDistance = ( 1 << params.searchLog) + 1;
U32 maxDistance = ( 1 << params.searchLog) + 1;
if (zc->hashTableLog < params.hashLog)
{