fs/binfmt_elf.c: fix bool assignements

Fix coccinelle warnings.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Fabian Frederick 2014-06-04 16:12:14 -07:00 committed by Linus Torvalds
parent d1826f2a3d
commit b219e25f8d
1 changed files with 2 additions and 2 deletions

View 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);