Adjust file error message to original one.
This commit is contained in:
parent
38117b1dc6
commit
e701a5a40b
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user