diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2015-04-16 15:27:16 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2015-04-16 15:27:16 (GMT) |
commit | bce2eeb9dfbca883003f21681e21df657fac90c4 (patch) | |
tree | 87c6c15df0f8b93affef3ec271e15f1aa98f9ad9 | |
parent | 9e92bee0443b45efa3de6b71f51863e8d66ead20 (diff) | |
download | lz4-bce2eeb9dfbca883003f21681e21df657fac90c4.zip lz4-bce2eeb9dfbca883003f21681e21df657fac90c4.tar.gz lz4-bce2eeb9dfbca883003f21681e21df657fac90c4.tar.bz2 |
Reclassified some notification messages as errors
-rw-r--r-- | programs/lz4io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/programs/lz4io.c b/programs/lz4io.c index e262304..7d4fc55 100644 --- a/programs/lz4io.c +++ b/programs/lz4io.c @@ -269,7 +269,7 @@ static int LZ4IO_getFiles(const char* input_filename, const char* output_filenam if ( *pfinput==0 ) { - DISPLAYLEVEL(2, "Unable to access file for processing: %s\n", input_filename); + DISPLAYLEVEL(1, "Unable to access file for processing: %s\n", input_filename); return 1; } @@ -1010,7 +1010,7 @@ int LZ4IO_decompressMultipleFilenames(const char** inFileNamesTable, int ifntSiz if (ofnSize <= ifnSize-suffixSize+1) { free(outFileName); ofnSize = ifnSize + 20; outFileName = (char*)malloc(ofnSize); } if (ifnSize <= suffixSize || strcmp(ifnSuffix, suffix) != 0) { - DISPLAYLEVEL(2, "File extension doesn't match expected LZ4_EXTENSION (%4s); will not process file: %s\n", suffix, inFileNamesTable[i]); + DISPLAYLEVEL(1, "File extension doesn't match expected LZ4_EXTENSION (%4s); will not process file: %s\n", suffix, inFileNamesTable[i]); skippedFiles++; continue; } |