mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
fixed unused variables warnings
This commit is contained in:
parent
23706fb743
commit
2ecd34ee5e
1 changed files with 2 additions and 1 deletions
|
|
@ -701,7 +701,7 @@ int main(int argCount, const char* argv[])
|
|||
BMK_setNbSeconds(bench_nbSeconds);
|
||||
BMK_benchFiles(filenameTable, filenameIdx, dictFileName, cLevel, cLevelLast, &compressionParams, setRealTimePrio);
|
||||
#endif
|
||||
(void)bench_nbSeconds;
|
||||
(void)bench_nbSeconds; (void)blockSize; (void)setRealTimePrio;
|
||||
goto _end;
|
||||
}
|
||||
|
||||
|
|
@ -772,6 +772,7 @@ int main(int argCount, const char* argv[])
|
|||
else
|
||||
operationResult = FIO_compressMultipleFilenames(filenameTable, filenameIdx, outFileName ? outFileName : suffix, dictFileName, cLevel, &compressionParams);
|
||||
#else
|
||||
(void)suffix;
|
||||
DISPLAY("Compression not supported\n");
|
||||
#endif
|
||||
} else { /* decompression or test */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue