diff mbox series

tools/image-host.c: Fix spelling of "expected".

Message ID 20210928171146.1104312-1-vagrant@debian.org
State Accepted
Commit 2c6bcab6e6e11030611b785d5bad50484424b128
Delegated to: Tom Rini
Headers show
Series tools/image-host.c: Fix spelling of "expected". | expand

Commit Message

Vagrant Cascadian Sept. 28, 2021, 5:11 p.m. UTC
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
---

 tools/image-host.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Sept. 30, 2021, 1:41 a.m. UTC | #1
On Tue, 28 Sept 2021 at 11:12, Vagrant Cascadian <vagrant@debian.org> wrote:
>
> Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
> ---
>
>  tools/image-host.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>
Tom Rini Oct. 13, 2021, 2:16 p.m. UTC | #2
On Tue, Sep 28, 2021 at 10:11:46AM -0700, Vagrant Cascadian wrote:

> Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
> Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/tools/image-host.c b/tools/image-host.c
index d3a882ec29..a6b0a94420 100644
--- a/tools/image-host.c
+++ b/tools/image-host.c
@@ -313,7 +313,7 @@  static int fit_image_read_data(char *filename, unsigned char *data,
 
 	/* Check that we have read all the file */
 	if (n != sbuf.st_size) {
-		printf("Can't read all file %s (read %zd bytes, expexted %lld)\n",
+		printf("Can't read all file %s (read %zd bytes, expected %lld)\n",
 		       filename, n, (long long)sbuf.st_size);
 		goto err;
 	}