diff --git a/[refs] b/[refs] index 2219ab1d2e2e..18a3343328a5 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 06842415149371127b91d15774cff95dcccc1845 +refs/heads/master: 55148548124e3e52e8921f1cb0e325111ef9cbb1 diff --git a/trunk/fs/binfmt_elf.c b/trunk/fs/binfmt_elf.c index 61c21e7dc95d..4349113881fb 100644 --- a/trunk/fs/binfmt_elf.c +++ b/trunk/fs/binfmt_elf.c @@ -1334,7 +1334,7 @@ static int fill_psinfo(struct elf_prpsinfo *psinfo, struct task_struct *p, 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;