linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][next] tools: bootconfig: fix spelling mistake "faile" -> "failed"
@ 2020-01-16  9:22 Colin King
  2020-01-16 10:02 ` Masami Hiramatsu
  0 siblings, 1 reply; 4+ messages in thread
From: Colin King @ 2020-01-16  9:22 UTC (permalink / raw)
  To: Masami Hiramatsu; +Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

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

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 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.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH][next] tools: bootconfig: fix spelling mistake "faile" -> "failed"
  2020-01-16  9:22 [PATCH][next] tools: bootconfig: fix spelling mistake "faile" -> "failed" Colin King
@ 2020-01-16 10:02 ` Masami Hiramatsu
  2020-01-20  3:04   ` Masami Hiramatsu
  0 siblings, 1 reply; 4+ messages in thread
From: Masami Hiramatsu @ 2020-01-16 10:02 UTC (permalink / raw)
  To: Colin King; +Cc: kernel-janitors, linux-kernel

Hi Colin,

On Thu, 16 Jan 2020 09:22:06 +0000
Colin King <colin.king@canonical.com> wrote:

> From: Colin Ian King <colin.king@canonical.com>
> 
> There are two spelling mistakes in printf statements, fix these.

Good catch!

Acked-by: Masami Hiramatsu <mhiramat@kernel.org>

Thanks!

> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  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.0
> 


-- 
Masami Hiramatsu <mhiramat@kernel.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH][next] tools: bootconfig: fix spelling mistake "faile" -> "failed"
  2020-01-16 10:02 ` Masami Hiramatsu
@ 2020-01-20  3:04   ` Masami Hiramatsu
  2020-01-21 23:10     ` Steven Rostedt
  0 siblings, 1 reply; 4+ messages in thread
From: Masami Hiramatsu @ 2020-01-20  3:04 UTC (permalink / raw)
  To: Steven Rostedt
  Cc: Colin King, kernel-janitors, linux-kernel, Masami Hiramatsu

Hi Steve,

Could you pick this fix too?

Thank you,

On Thu, 16 Jan 2020 19:02:39 +0900
Masami Hiramatsu <mhiramat@kernel.org> wrote:

> Hi Colin,
> 
> On Thu, 16 Jan 2020 09:22:06 +0000
> Colin King <colin.king@canonical.com> wrote:
> 
> > From: Colin Ian King <colin.king@canonical.com>
> > 
> > There are two spelling mistakes in printf statements, fix these.
> 
> Good catch!
> 
> Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
> 
> Thanks!
> 
> > 
> > Signed-off-by: Colin Ian King <colin.king@canonical.com>
> > ---
> >  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.0
> > 
> 
> 
> -- 
> Masami Hiramatsu <mhiramat@kernel.org>


-- 
Masami Hiramatsu <mhiramat@kernel.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH][next] tools: bootconfig: fix spelling mistake "faile" -> "failed"
  2020-01-20  3:04   ` Masami Hiramatsu
@ 2020-01-21 23:10     ` Steven Rostedt
  0 siblings, 0 replies; 4+ messages in thread
From: Steven Rostedt @ 2020-01-21 23:10 UTC (permalink / raw)
  To: Masami Hiramatsu; +Cc: Colin King, kernel-janitors, linux-kernel

On Mon, 20 Jan 2020 12:04:03 +0900
Masami Hiramatsu <mhiramat@kernel.org> wrote:

> Hi Steve,
> 
> Could you pick this fix too?

Sure.

-- Steve


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-01-21 23:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-16  9:22 [PATCH][next] tools: bootconfig: fix spelling mistake "faile" -> "failed" Colin King
2020-01-16 10:02 ` Masami Hiramatsu
2020-01-20  3:04   ` Masami Hiramatsu
2020-01-21 23:10     ` Steven Rostedt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).