summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2001-10-11 22:49:27 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2001-10-11 22:49:27 +0000
commit698166ca554d6cba78cd1728268fa03091697973 (patch)
treec64878455baa9cbfb069e1acc989eca5535d6c21
parent6a90c862d374ae974bf64cf16b02930f6acd9bcc (diff)
Notes
-rw-r--r--sys/kern/kern_prot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_prot.c b/sys/kern/kern_prot.c
index 68e408b01ff0..7faf612b78fd 100644
--- a/sys/kern/kern_prot.c
+++ b/sys/kern/kern_prot.c
@@ -1407,7 +1407,7 @@ int
p_cansignal(struct proc *p1, struct proc *p2, int signum)
{
int error;
-
+
if (p1 == p2)
return (0);
@@ -1577,7 +1577,7 @@ crget()
{
register struct ucred *cr;
- MALLOC(cr, struct ucred *, sizeof(*cr), M_CRED, M_WAITOK|M_ZERO);
+ MALLOC(cr, struct ucred *, sizeof(*cr), M_CRED, M_WAITOK | M_ZERO);
cr->cr_ref = 1;
mtx_init(&cr->cr_mtx, "ucred", MTX_DEF);
return (cr);