diff options
author | Jeff Roberson <jeff@FreeBSD.org> | 2007-09-17 05:31:39 +0000 |
---|---|---|
committer | Jeff Roberson <jeff@FreeBSD.org> | 2007-09-17 05:31:39 +0000 |
commit | b61ce5b0e6aad0a00038c9c40f29a7de3646e3fe (patch) | |
tree | e572a7b77f24339d2dc6ebf6b83c1e2c1ce0f6a5 /sys/ddb | |
parent | 0e8c5adf211ae3a5e3ab19d96ca3a01d03210125 (diff) | |
download | src-b61ce5b0e6aad0a00038c9c40f29a7de3646e3fe.tar.gz src-b61ce5b0e6aad0a00038c9c40f29a7de3646e3fe.zip |
Notes
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ddb/db_ps.c b/sys/ddb/db_ps.c index 61e36b94fc1b..9efd87107bc9 100644 --- a/sys/ddb/db_ps.c +++ b/sys/ddb/db_ps.c @@ -162,7 +162,7 @@ db_ps(db_expr_t addr, boolean_t hasaddr, db_expr_t count, char *modif) state[1] = '\0'; /* Additional process state flags. */ - if (!p->p_sflag & PS_INMEM) + if (!p->p_flag & P_INMEM) strlcat(state, "W", sizeof(state)); if (p->p_flag & P_TRACED) strlcat(state, "X", sizeof(state)); |