zstdcli: fixed minor warning when bench module not enabled

one variable defined but not used
This commit is contained in:
Yann Collet 2017-12-01 17:42:46 -08:00
parent c6f5bf071c
commit 71f012e5bf

View File

@ -773,8 +773,9 @@ int main(int argCount, const char* argv[])
BMK_setLdmHashEveryLog(g_ldmHashEveryLog);
}
BMK_benchFiles(filenameTable, filenameIdx, dictFileName, cLevel, cLevelLast, &compressionParams);
#else
(void)bench_nbSeconds; (void)blockSize; (void)setRealTimePrio; (void)separateFiles;
#endif
(void)bench_nbSeconds; (void)blockSize; (void)setRealTimePrio;
goto _end;
}