diff options
author | jhb <jhb@FreeBSD.org> | 2006-04-27 22:02:27 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2006-04-27 22:02:27 +0000 |
commit | a233072f57da333684209b229c691850b7a185d0 (patch) | |
tree | 72a2bc7df439685f6917f5d7b34308042292e9bd /sys/ddb/db_ps.c | |
parent | 043679e436c1f9fee886233ecef16c2120f146ca (diff) | |
download | FreeBSD-src-a233072f57da333684209b229c691850b7a185d0.zip FreeBSD-src-a233072f57da333684209b229c691850b7a185d0.tar.gz |
A whitespace fix.
Submitted by: bde
Diffstat (limited to 'sys/ddb/db_ps.c')
-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 10d610d..5bee4b2 100644 --- a/sys/ddb/db_ps.c +++ b/sys/ddb/db_ps.c @@ -116,7 +116,7 @@ db_ps(db_expr_t addr, boolean_t hasaddr, db_expr_t count, char *modif) pgrp != NULL ? pgrp->pg_id : 0); /* Determine our primary process state. */ - switch(p->p_state) { + switch (p->p_state) { case PRS_NORMAL: if (P_SHOULDSTOP(p)) state[0] = 'T'; |