diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2010-06-30 21:01:46 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2010-06-30 21:01:46 +0000 |
commit | 458a13be62a11cb3845bf20e405aebb2eea74343 (patch) | |
tree | 185e26b48ab6242beb44aad831f95ec855c8834f /sys/kern | |
parent | 5e5f819a91d542d88065bda1c12a6078e1c4aaca (diff) |
style nit
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/kern_fork.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index c55dffdbc88..83989845b69 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_fork.c,v 1.117 2010/06/30 00:40:28 guenther Exp $ */ +/* $OpenBSD: kern_fork.c,v 1.118 2010/06/30 21:01:45 thib Exp $ */ /* $NetBSD: kern_fork.c,v 1.29 1996/02/09 18:59:34 christos Exp $ */ /* @@ -205,8 +205,7 @@ fork1(struct proc *p1, int exitsig, int flags, void *stack, size_t stacksize, #endif /* sanity check some flag combinations */ - if (flags & FORK_THREAD) - { + if (flags & FORK_THREAD) { if (!rthreads_enabled) return (ENOTSUP); if ((flags & (FORK_SIGHAND | FORK_NOZOMBIE)) != |