This is a trivial cosmetic fix. Without it, the error message might look like:
Image size doesnt match: Success Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2573 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
999bc60d5f
commit
5445639f06
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue