fixed conversion warning

This commit is contained in:
Yann Collet 2016-07-06 13:13:12 +02:00
parent 517e1ba623
commit a295b3170f
2 changed files with 3 additions and 5 deletions

1
NEWS
View File

@ -1,6 +1,7 @@
v0.7.3 v0.7.3
added : `--` separator, stating that all following arguments are file names. Suggested by Chip Turner. added : `--` separator, stating that all following arguments are file names. Suggested by Chip Turner.
added : OpenBSD target, by Juan Francisco Cantero Hurtado added : OpenBSD target, by Juan Francisco Cantero Hurtado
fixed : dictBuilder using HC levels, reported by Bartosz Taudul
v0.7.2 v0.7.2
fixed : ZSTD_decompressBlock() using multiple consecutive blocks. Reported by Greg Slazinski. fixed : ZSTD_decompressBlock() using multiple consecutive blocks. Reported by Greg Slazinski.

View File

@ -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 const unsigned refreshRate = CLOCKS_PER_SEC * 3 / 10;
static clock_t g_time = 0; 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) static void ZDICT_printHex(U32 dlevel, const void* ptr, size_t length)
{ {
const BYTE* const b = (const BYTE*)ptr; 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 * Helper functions
**********************************************************/ **********************************************************/
static unsigned ZDICT_clockSpan(clock_t nPrevious)
{
return clock() - nPrevious;
}
unsigned ZDICT_isError(size_t errorCode) { return ERR_isError(errorCode); } unsigned ZDICT_isError(size_t errorCode) { return ERR_isError(errorCode); }
const char* ZDICT_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } const char* ZDICT_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); }