summaryrefslogtreecommitdiffstats
path: root/programs/lz4cli.c
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-11-06 10:11:55 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-11-06 10:11:55 (GMT)
commit112499a73a0f367677d8df486a30007ca94101b1 (patch)
tree6057917cbd5ac8599b22736ef2db83ad48ec9654 /programs/lz4cli.c
parentfbede33fd7f98f62d89031b4ee29cffdc90cceb8 (diff)
parent58d7a619a599e2a4ee94ab4406f9bb490d0ee84d (diff)
downloadlz4-112499a73a0f367677d8df486a30007ca94101b1.zip
lz4-112499a73a0f367677d8df486a30007ca94101b1.tar.gz
lz4-112499a73a0f367677d8df486a30007ca94101b1.tar.bz2
Merge remote-tracking branch 'refs/remotes/lz4/dev' into dev
Diffstat (limited to 'programs/lz4cli.c')
-rw-r--r--programs/lz4cli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index b707795..e49bbcb 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -569,7 +569,7 @@ int main(int argc, const char** argv)
if (multiple_inputs)
operationResult = LZ4IO_decompressMultipleFilenames(inFileNames, ifnIdx, LZ4_EXTENSION);
else
- DEFAULT_DECOMPRESSOR(input_filename, output_filename);
+ operationResult = DEFAULT_DECOMPRESSOR(input_filename, output_filename);
} else {
/* compression is default action */
if (legacy_format) {
@@ -579,7 +579,7 @@ int main(int argc, const char** argv)
if (multiple_inputs)
operationResult = LZ4IO_compressMultipleFilenames(inFileNames, ifnIdx, LZ4_EXTENSION, cLevel);
else
- DEFAULT_COMPRESSOR(input_filename, output_filename, cLevel);
+ operationResult = DEFAULT_COMPRESSOR(input_filename, output_filename, cLevel);
}
}