]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
fs/binfmt_elf.c: fix bool assignements
authorFabian Frederick <fabf@skynet.be>
Thu, 22 May 2014 00:43:44 +0000 (10:43 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 22 May 2014 00:43:44 +0000 (10:43 +1000)
Fix coccinelle warnings.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/binfmt_elf.c

index aa3cb626671e4a573a4882580cc3d834664751f1..dabc73ab900fa8bc1e0036f30df2b13cb939b42c 100644 (file)
@@ -1686,7 +1686,7 @@ static size_t get_note_info_size(struct elf_note_info *info)
 static int write_note_info(struct elf_note_info *info,
                           struct coredump_params *cprm)
 {
-       bool first = 1;
+       bool first = true;
        struct elf_thread_core_info *t = info->thread;
 
        do {
@@ -1710,7 +1710,7 @@ static int write_note_info(struct elf_note_info *info,
                            !writenote(&t->notes[i], cprm))
                                return 0;
 
-               first = 0;
+               first = false;
                t = t->next;
        } while (t);