Commit df8a3c83 authored by Stefan Reinauer's avatar Stefan Reinauer Committed by Stefan Reinauer
Browse files

This is a trivial cosmetic fix


Without it, the error message might look like: Image size doesnt match:
Success

Corresponding to flashrom svn r95 and coreboot v2 svn r2573.
Signed-off-by: default avatarStefan Reinauer <stepan@coresystems.de>
Acked-by: default avatarStefan Reinauer <stepan@coresystems.de>
parent d6b86cf9
......@@ -345,7 +345,7 @@ int main(int argc, char *argv[])
exit(1);
}
if(image_stat.st_size!=flash->total_size*1024) {
perror("Image size doesnt match");
fprintf(stderr, "Error: Image size doesnt match\n");
exit(1);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment