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:
parent
fc7a28e8a0
commit
21f01c5a53
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue