aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2011-03-23 13:44:32 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2011-03-23 13:44:32 +0000
commitc3b127e0225b7835136b09d7c17e7851b8668494 (patch)
tree846e3823ceba07be8a204d2a93ec861571181bd7 /sys/kern/kern_sig.c
parenta3d0282dad7bced2b07e274e14f3b83b8ff012eb (diff)
downloadsrc-c3b127e0225b7835136b09d7c17e7851b8668494.tar.gz
src-c3b127e0225b7835136b09d7c17e7851b8668494.zip
Small style fix.
Notes
Notes: svn path=/head/; revision=219905
Diffstat (limited to 'sys/kern/kern_sig.c')
-rw-r--r--sys/kern/kern_sig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c
index ffa16339e48a..0bea842c4aee 100644
--- a/sys/kern/kern_sig.c
+++ b/sys/kern/kern_sig.c
@@ -1632,7 +1632,7 @@ killpg1(struct thread *td, int sig, int pgid, int all, ksiginfo_t *ksi)
LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
PROC_LOCK(p);
if (p->p_pid <= 1 || p->p_flag & P_SYSTEM ||
- p->p_state == PRS_NEW ) {
+ p->p_state == PRS_NEW) {
PROC_UNLOCK(p);
continue;
}