Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23611
b: refs/heads/master
c: 5514854
h: refs/heads/master
i:
  23609: e16b038
  23607: c2a08b2
v: v3
  • Loading branch information
Carsten Otte authored and Linus Torvalds committed Mar 25, 2006
1 parent cd17804 commit dda828c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 06842415149371127b91d15774cff95dcccc1845
refs/heads/master: 55148548124e3e52e8921f1cb0e325111ef9cbb1
2 changes: 1 addition & 1 deletion trunk/fs/binfmt_elf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit dda828c

Please sign in to comment.