From 21f01c5a5367f508346a8146a9b5ccdee886dd95 Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Sun, 26 Jul 2020 16:01:35 +0200 Subject: intelvbttool: Fix some typos in error messages Change-Id: Id6298883c39c21179b13696dab630818b81026ff Signed-off-by: Peter Lemenkov Reviewed-on: https://review.coreboot.org/c/coreboot/+/43905 Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- util/intelvbttool/intelvbttool.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'util/intelvbttool/intelvbttool.c') diff --git a/util/intelvbttool/intelvbttool.c b/util/intelvbttool/intelvbttool.c index 7d23c86c17..c8d7a088d3 100644 --- a/util/intelvbttool/intelvbttool.c +++ b/util/intelvbttool/intelvbttool.c @@ -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; } -- cgit v1.2.3