summaryrefslogtreecommitdiffstats
path: root/programs/lz4cli.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2018-09-18 23:08:17 (GMT)
committerYann Collet <cyan@fb.com>2018-09-18 23:08:17 (GMT)
commite34a27d2910c48e2d7501f5eb0eaefe91c558763 (patch)
tree15b1cb002d46c55e81a9d012deb6df742f327368 /programs/lz4cli.c
parent8bea19d57c0db6d3d812c7acc3d1834762bce297 (diff)
downloadlz4-e34a27d2910c48e2d7501f5eb0eaefe91c558763.zip
lz4-e34a27d2910c48e2d7501f5eb0eaefe91c558763.tar.gz
lz4-e34a27d2910c48e2d7501f5eb0eaefe91c558763.tar.bz2
fixed minor cppcheck warnings in programs
Diffstat (limited to 'programs/lz4cli.c')
-rw-r--r--programs/lz4cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index 26a8089..46a95cd 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -141,7 +141,7 @@ static int usage_advanced(const char* exeName)
DISPLAY( "--content-size : compressed frame includes original size (default:not present)\n");
DISPLAY( "--[no-]sparse : sparse mode (default:enabled on file, disabled on stdout)\n");
DISPLAY( "--favor-decSpeed: compressed files decompress faster, but are less compressed \n");
- DISPLAY( "--fast[=#]: switch to ultra fast compression level (default: %u)\n", 1);
+ DISPLAY( "--fast[=#]: switch to ultra fast compression level (default: %i)\n", 1);
DISPLAY( "Benchmark arguments : \n");
DISPLAY( " -b# : benchmark file(s), using # compression level (default : 1) \n");
DISPLAY( " -e# : test all compression levels from -bX to # (default : 1)\n");