aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc')
-rw-r--r--fs/proc/array.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c
index 04b689f3288f..7a34571203bc 100644
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -146,8 +146,7 @@ static inline const char *get_task_state(struct task_struct *tsk)
146 TASK_UNINTERRUPTIBLE | 146 TASK_UNINTERRUPTIBLE |
147 TASK_STOPPED | 147 TASK_STOPPED |
148 TASK_TRACED)) | 148 TASK_TRACED)) |
149 (tsk->exit_state & (EXIT_ZOMBIE | 149 tsk->exit_state;
150 EXIT_DEAD));
151 const char **p = &task_state_array[0]; 150 const char **p = &task_state_array[0];
152 151
153 while (state) { 152 while (state) {