Error message update

This commit is contained in:
Uwe Seimet 2021-12-20 20:06:02 +01:00
parent fe76a1a577
commit 29d919d30e
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ bool RascsiImage::CreateImage(int fd, const PbCommand& command)
}
if (len < 512 || (len & 0x1ff)) {
ostringstream error;
error << "Invalid image file size " << len;
error << "Invalid image file size " << len << " (not a multiple of 512)";
return ReturnStatus(fd, false, error.str());
}