From 15519479ba2b6387952b95f9404329529e473581 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 20 Sep 2018 13:00:11 -0700 Subject: [PATCH] fixed minor gcc warning on a unused variable --- programs/zstdcli.c | 2 +- tests/playTests.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/zstdcli.c b/programs/zstdcli.c index 36140c49..253bb0d0 100644 --- a/programs/zstdcli.c +++ b/programs/zstdcli.c @@ -1014,7 +1014,7 @@ int main(int argCount, const char* argv[]) else operationResult = FIO_compressMultipleFilenames(filenameTable, filenameIdx, outFileName, suffix, dictFileName, cLevel, compressionParams); #else - (void)suffix; + (void)suffix; (void)adapt; DISPLAY("Compression not supported\n"); #endif } else { /* decompression or test */ diff --git a/tests/playTests.sh b/tests/playTests.sh index 4e543aaa..5898d183 100755 --- a/tests/playTests.sh +++ b/tests/playTests.sh @@ -904,7 +904,7 @@ $ZSTD -o tmpDict --train-cover *.c ../programs/*.c test -f tmpDict $ZSTD --train-cover *.c ../programs/*.c test -f dictionary -rm tmp* dictionary +rm -f tmp* dictionary -rm tmp* +rm -f tmp*