intelvbttool: Fix some typos in error messages

Change-Id: Id6298883c39c21179b13696dab630818b81026ff
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43905
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Peter Lemenkov 2020-07-26 16:01:35 +02:00 committed by Patrick Georgi
parent fc7a28e8a0
commit 21f01c5a53
1 changed files with 3 additions and 3 deletions

View File

@ -736,7 +736,7 @@ static void parse_vbt(const struct fileobject *fo,
*vbt = NULL;
if (fo->size < sizeof(struct vbt_header)) {
printerr("image is to small\n");
printerr("image is too small\n");
return;
}
@ -810,12 +810,12 @@ static u8 checksum_vbios(const optionrom_header_t *oh)
static int is_valid_vbios(const struct fileobject *fo)
{
if (fo->size > 64 * 2 * KiB) {
printerr("VBIOS is to big\n");
printerr("VBIOS is too big\n");
return 0;
}
if (fo->size < sizeof(optionrom_header_t)) {
printerr("VBIOS is to small\n");
printerr("VBIOS is too small\n");
return 0;
}