[patch] [trivial] remove needless check in binfmt_elf.c

From: Carsten Otte
Date: Tue Mar 21 2006 - 08:23:14 EST


local variable i is unsigned int and thus cannot be negative.

signed-off-by: Carsten Otte <cotte@xxxxxxxxxx>
--
diff -ruN linux-2.6.16/fs/binfmt_elf.c linux-2.6.16-fix/fs/binfmt_elf.c
--- linux-2.6.16/fs/binfmt_elf.c 2006-03-20 06:53:29.000000000 +0100
+++ linux-2.6.16-fix/fs/binfmt_elf.c 2006-03-21 14:02:33.000000000 +0100
@@ -1334,7 +1334,7 @@

i = p->state ? ffz(~p->state) + 1 : 0;
psinfo->pr_state = i;
- psinfo->pr_sname = (i < 0 || i > 5) ? '.' : "RSDTZW"[i];
+ psinfo->pr_sname = (i > 5) ? '.' : "RSDTZW"[i];
psinfo->pr_zomb = psinfo->pr_sname == 'Z';
psinfo->pr_nice = task_nice(p);
psinfo->pr_flag = p->flags;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/