Update error message

This commit is contained in:
Uwe Seimet 2023-11-17 09:18:38 +01:00
parent 4d6a645b72
commit deb65b94b3
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ int ScsiCtl::ExportAsText(const PbCommand &command, const string &filename) cons
ofstream out(filename);
out << text;
if (out.fail()) {
cerr << "Error: Can't create protobuf text file '" << filename << "'" << endl;
cerr << "Error: Can't create protobuf text format file '" << filename << "'" << endl;
return EXIT_FAILURE;
}