From: Yann Collet Date: Wed, 6 Jul 2016 11:13:12 +0000 (+0200) Subject: fixed conversion warning X-Git-Tag: v0.7.3^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a295b3170fa6b05f93faaf60ab152f1f50310dbe;p=thirdparty%2Fzstd.git fixed conversion warning --- diff --git a/NEWS b/NEWS index 88e8c3b1f..4569e12fc 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ v0.7.3 added : `--` separator, stating that all following arguments are file names. Suggested by Chip Turner. added : OpenBSD target, by Juan Francisco Cantero Hurtado +fixed : dictBuilder using HC levels, reported by Bartosz Taudul v0.7.2 fixed : ZSTD_decompressBlock() using multiple consecutive blocks. Reported by Greg Slazinski. diff --git a/lib/dictBuilder/zdict.c b/lib/dictBuilder/zdict.c index fa09acb36..04b20ec7c 100644 --- a/lib/dictBuilder/zdict.c +++ b/lib/dictBuilder/zdict.c @@ -99,6 +99,8 @@ static unsigned g_displayLevel = 0; /* 0 : no display; 1: errors; 2: defau static const unsigned refreshRate = CLOCKS_PER_SEC * 3 / 10; static clock_t g_time = 0; +static clock_t ZDICT_clockSpan(clock_t nPrevious) { return clock() - nPrevious; } + static void ZDICT_printHex(U32 dlevel, const void* ptr, size_t length) { const BYTE* const b = (const BYTE*)ptr; @@ -114,11 +116,6 @@ static void ZDICT_printHex(U32 dlevel, const void* ptr, size_t length) /*-******************************************************** * Helper functions **********************************************************/ -static unsigned ZDICT_clockSpan(clock_t nPrevious) -{ - return clock() - nPrevious; -} - unsigned ZDICT_isError(size_t errorCode) { return ERR_isError(errorCode); } const char* ZDICT_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); }