diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-05-23 17:25:21 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-05-23 17:25:21 +0000 |
commit | fd39f5fb2724745dbe68710ac2ada35fa878426c (patch) | |
tree | bbad18c899f0b3b1b65227f8499a24055bfd420d | |
parent | 36e59fa04c060732853c82aa0cd12f3418925a19 (diff) |
fix typo
-rw-r--r-- | libps/procstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libps/procstat.c b/libps/procstat.c index 61371d34..6b1c38cf 100644 --- a/libps/procstat.c +++ b/libps/procstat.c @@ -366,7 +366,7 @@ summarize_thread_basic_info (struct procinfo *pi) for (i = 0; i < pi->nthreads; i++) if (! pi->threadinfos[i].died - && ! (pi->threadinfos[i].pis_bi & TH_FLAGS_IDLE)) + && ! (pi->threadinfos[i].pis_bi.flags & TH_FLAGS_IDLE)) { thread_basic_info_t bi = &pi->threadinfos[i].pis_bi; int thread_run_state = bi->run_state; |