1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

Whitespace fixes.

This commit is contained in:
John Baldwin 2001-10-11 22:49:27 +00:00
parent 6a90c862d3
commit 698166ca55
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84826

View File

@ -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);