summaryrefslogtreecommitdiffstats
path: root/programs/lz4io.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-04-16 15:27:16 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-04-16 15:27:16 (GMT)
commitbce2eeb9dfbca883003f21681e21df657fac90c4 (patch)
tree87c6c15df0f8b93affef3ec271e15f1aa98f9ad9 /programs/lz4io.c
parent9e92bee0443b45efa3de6b71f51863e8d66ead20 (diff)
downloadlz4-bce2eeb9dfbca883003f21681e21df657fac90c4.zip
lz4-bce2eeb9dfbca883003f21681e21df657fac90c4.tar.gz
lz4-bce2eeb9dfbca883003f21681e21df657fac90c4.tar.bz2
Reclassified some notification messages as errors
Diffstat (limited to 'programs/lz4io.c')
-rw-r--r--programs/lz4io.c4
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;
}