All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH mmotm] Fix missing closing parenthesis in binfmt_elf.c
@ 2007-11-20  0:16 Kevin Winchester
  2007-11-20  0:39 ` Andrew Morton
  0 siblings, 1 reply; 2+ messages in thread
From: Kevin Winchester @ 2007-11-20  0:16 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel


An obviously missing closing parenthesis.

Signed-off-by: Kevin Winchester <kjwinchester@gmail.com>

---

This is more for practice sending patches than anything else, to make
sure they are not damaged in any way.

But it does bring up a good question.  Are patches expected/wanted for
the mmotm kernels?

Index: linux-mm/fs/binfmt_elf.c
===================================================================
--- linux-mm.orig/fs/binfmt_elf.c       2007-11-19 20:01:00.000000000 -0400
+++ linux-mm/fs/binfmt_elf.c    2007-11-19 20:02:34.000000000 -0400
@@ -1031,7 +1031,7 @@
        }

        if (elf_interpreter) {
-               if (IS_AOUT_INTERP(interpreter_type) {
+               if (IS_AOUT_INTERP(interpreter_type)) {
                        elf_entry = load_aout_interp(&loc->interp_ex,
                                                     interpreter);
                } else {

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

* Re: [PATCH mmotm] Fix missing closing parenthesis in binfmt_elf.c
  2007-11-20  0:16 [PATCH mmotm] Fix missing closing parenthesis in binfmt_elf.c Kevin Winchester
@ 2007-11-20  0:39 ` Andrew Morton
  0 siblings, 0 replies; 2+ messages in thread
From: Andrew Morton @ 2007-11-20  0:39 UTC (permalink / raw)
  To: Kevin Winchester; +Cc: linux-kernel

On Mon, 19 Nov 2007 20:16:20 -0400
Kevin Winchester <kjwinchester@gmail.com> wrote:

> 
> An obviously missing closing parenthesis.
> 

I'm going through complete misery with that file.

> 
> ---
> 
> This is more for practice sending patches than anything else, to make
> sure they are not damaged in any way.
> 
> But it does bring up a good question.  Are patches expected/wanted for
> the mmotm kernels?

Sure, thanks.

> Index: linux-mm/fs/binfmt_elf.c
> ===================================================================
> --- linux-mm.orig/fs/binfmt_elf.c       2007-11-19 20:01:00.000000000 -0400
> +++ linux-mm/fs/binfmt_elf.c    2007-11-19 20:02:34.000000000 -0400
> @@ -1031,7 +1031,7 @@
>         }
> 
>         if (elf_interpreter) {
> -               if (IS_AOUT_INTERP(interpreter_type) {
> +               if (IS_AOUT_INTERP(interpreter_type)) {
>                         elf_entry = load_aout_interp(&loc->interp_ex,
>                                                      interpreter);
>                 } else {

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

end of thread, other threads:[~2007-11-20  0:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-20  0:16 [PATCH mmotm] Fix missing closing parenthesis in binfmt_elf.c Kevin Winchester
2007-11-20  0:39 ` Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.