Commit bcc717ed authored by Colin Ian King's avatar Colin Ian King Committed by Steven Rostedt (VMware)

tools: bootconfig: Fix spelling mistake "faile" -> "failed"

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

Link: http://lkml.kernel.org/r/20200116092206.52192-1-colin.king@canonical.comAcked-by: default avatarMasami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
parent b8381ce7
...@@ -140,7 +140,7 @@ int load_xbc_from_initrd(int fd, char **buf) ...@@ -140,7 +140,7 @@ int load_xbc_from_initrd(int fd, char **buf)
return 0; return 0;
if (lseek(fd, -8, SEEK_END) < 0) { if (lseek(fd, -8, SEEK_END) < 0) {
printf("Faile to lseek: %d\n", -errno); printf("Failed to lseek: %d\n", -errno);
return -errno; return -errno;
} }
...@@ -155,7 +155,7 @@ int load_xbc_from_initrd(int fd, char **buf) ...@@ -155,7 +155,7 @@ int load_xbc_from_initrd(int fd, char **buf)
return 0; return 0;
if (lseek(fd, stat.st_size - 8 - size, SEEK_SET) < 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; return -errno;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment