lkml.org 
[lkml]   [2020]   [Jan]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[for-next][PATCH 09/14] tools: bootconfig: Fix spelling mistake "faile" -> "failed"
From: Colin Ian King <colin.king@canonical.com>

There are two spelling mistakes in printf statements, fix these.

Link: http://lkml.kernel.org/r/20200116092206.52192-1-colin.king@canonical.com

Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
---
tools/bootconfig/main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/bootconfig/main.c b/tools/bootconfig/main.c
index b8f174fd2a0a..91c9a5c0c499 100644
--- a/tools/bootconfig/main.c
+++ b/tools/bootconfig/main.c
@@ -140,7 +140,7 @@ int load_xbc_from_initrd(int fd, char **buf)
return 0;

if (lseek(fd, -8, SEEK_END) < 0) {
- printf("Faile to lseek: %d\n", -errno);
+ printf("Failed to lseek: %d\n", -errno);
return -errno;
}

@@ -155,7 +155,7 @@ int load_xbc_from_initrd(int fd, char **buf)
return 0;

if (lseek(fd, stat.st_size - 8 - size, SEEK_SET) < 0) {
- printf("Faile to lseek: %d\n", -errno);
+ printf("Failed to lseek: %d\n", -errno);
return -errno;
}

--
2.24.1

\
 
 \ /
  Last update: 2020-01-24 16:18    [W:0.097 / U:0.020 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site