fix for ARM platform

This commit is contained in:
Yann Collet 2016-11-01 21:04:56 -07:00
parent 67500142c1
commit 59adfd82d6

View File

@ -125,10 +125,10 @@
static int g_displayLevel = 0; /* 0 : no display ; 1: errors ; 2 : + result + interaction + warnings ; 3 : + progression; 4 : + information */
#define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
if (((g_time - clock()) > refreshRate) || (g_displayLevel>=4)) \
if (((clock_t)(g_time - clock()) > refreshRate) || (g_displayLevel>=4)) \
{ g_time = clock(); DISPLAY(__VA_ARGS__); \
if (g_displayLevel>=4) fflush(stderr); } }
static const unsigned refreshRate = CLOCKS_PER_SEC / 6;
static const clock_t refreshRate = CLOCKS_PER_SEC / 6;
static clock_t g_time = 0;