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:
Stefan Reinauer 2007-03-22 14:51:45 +00:00 committed by Stefan Reinauer
parent 999bc60d5f
commit 5445639f06
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}