diff options
author | Peter Lemenkov <lemenkov@gmail.com> | 2020-07-26 16:01:35 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-07-28 19:20:05 +0000 |
commit | 21f01c5a5367f508346a8146a9b5ccdee886dd95 (patch) | |
tree | a893c633a6f228ca3a05246b8ece6feec2e29930 /util/intelvbttool | |
parent | fc7a28e8a0ecc5305838d5440c5e073d76a5ef48 (diff) |
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>
Diffstat (limited to 'util/intelvbttool')
-rw-r--r-- | util/intelvbttool/intelvbttool.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |