From a295b3170fa6b05f93faaf60ab152f1f50310dbe Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Wed, 6 Jul 2016 13:13:12 +0200 Subject: [PATCH] fixed conversion warning --- NEWS | 1 + lib/dictBuilder/zdict.c | 7 ++----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 88e8c3b1..4569e12f 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 fa09acb3..04b20ec7 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); }