This commit is contained in:
Uwe Seimet 2023-11-15 18:02:24 +01:00
parent 5e761730f3
commit 1305d00a6a
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ bool ScsiExecutor::Execute(const string& filename, bool binary, string& result)
if (!binary) {
ifstream in(filename);
if (in.fail()) {
result = "Can't open JSON input file '" + filename + "'" + strerror(errno);
result = "Can't open JSON input file '" + filename + "': " + strerror(errno);
return false;
}