We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 995dfb6 commit 288d230Copy full SHA for 288d230
src/app/BlockCompressor.cpp
@@ -192,7 +192,7 @@ int BlockCompressor::compress(uint64& outputSize)
192
}
193
194
if (files.size() == 0) {
195
- cerr << "Cannot access input file '" << _inputName << "'" << endl;
+ cerr << "Cannot find any file to compress" << endl;
196
return Error::ERR_OPEN_FILE;
197
198
src/app/BlockDecompressor.cpp
@@ -102,7 +102,7 @@ int BlockDecompressor::decompress(uint64& inputSize)
102
103
104
105
+ cerr << "Cannot find any file to decompress" << endl;
106
107
108
0 commit comments