Adjust file error message to original one.

This commit is contained in:
Heinz Mauelshagen 2011-12-14 21:01:51 +01:00
parent 38117b1dc6
commit e701a5a40b
2 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ int main(int argc, char **argv)
}
if (filename.empty()) {
cerr << "No dump file name" << endl;
cerr << "No output file provided." << endl;
return 1;
}

View File

@ -92,12 +92,12 @@ int main(int argc, char **argv)
}
if (input.empty()) {
cerr << "No input file name" << endl;
cerr << "No input file provided." << endl;
return 1;
}
if (output.empty()) {
cerr << "No output file name" << endl;
cerr << "No output file provided." << endl;
return 1;
}