diff options
author | alex <alex@FreeBSD.org> | 1997-06-26 16:12:53 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 1997-06-26 16:12:53 +0000 |
commit | f3cccc0874241610ec0519149e3709cacdd9ba3e (patch) | |
tree | e45caf291d8d317edbcea21d3e000fa02daab81e /sys/miscfs | |
parent | 60244752ba0da2984ac299345931acdf9be55c9f (diff) | |
download | FreeBSD-src-f3cccc0874241610ec0519149e3709cacdd9ba3e.zip FreeBSD-src-f3cccc0874241610ec0519149e3709cacdd9ba3e.tar.gz |
Style fix my previous commit.
Diffstat (limited to 'sys/miscfs')
-rw-r--r-- | sys/miscfs/procfs/procfs_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/procfs/procfs_subr.c b/sys/miscfs/procfs/procfs_subr.c index 072331c..4793a7f 100644 --- a/sys/miscfs/procfs/procfs_subr.c +++ b/sys/miscfs/procfs/procfs_subr.c @@ -36,7 +36,7 @@ * * @(#)procfs_subr.c 8.6 (Berkeley) 5/14/95 * - * $Id: procfs_subr.c,v 1.14 1997/03/08 16:06:34 bde Exp $ + * $Id: procfs_subr.c,v 1.15 1997/06/21 16:09:49 alex Exp $ */ #include <sys/param.h> @@ -243,7 +243,7 @@ procfs_rw(ap) if (p == 0) return (EINVAL); if (p->p_pid == 1 && securelevel > 0 && uio->uio_rw == UIO_WRITE) - return(EACCES); + return (EACCES); while (pfs->pfs_lockowner) { tsleep(&pfs->pfs_lockowner, PRIBIO, "pfslck", 0); |