summaryrefslogtreecommitdiffstats
path: root/sys/kern/sys_pipe.c
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-10-12 22:26:41 +0000
committeralfred <alfred@FreeBSD.org>2002-10-12 22:26:41 +0000
commitf178c67fb04fde8a6e5f7d20dafee8d3220a0ed2 (patch)
treeedb345ffeca35870b3b8c1f0bfcf1a363b83e848 /sys/kern/sys_pipe.c
parent635c63996ce666b1612de4826e4a8024f031e3a0 (diff)
downloadFreeBSD-src-f178c67fb04fde8a6e5f7d20dafee8d3220a0ed2.zip
FreeBSD-src-f178c67fb04fde8a6e5f7d20dafee8d3220a0ed2.tar.gz
whitespace fixes.
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r--sys/kern/sys_pipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c
index 235f862..0d98434 100644
--- a/sys/kern/sys_pipe.c
+++ b/sys/kern/sys_pipe.c
@@ -903,7 +903,7 @@ pipe_write(fp, uio, active_cred, flags, td)
(wpipe->pipe_buffer.size <= PIPE_SIZE) &&
(wpipe->pipe_buffer.cnt == 0)) {
- if ((error = pipelock(wpipe,1)) == 0) {
+ if ((error = pipelock(wpipe, 1)) == 0) {
PIPE_GET_GIANT(wpipe);
if (pipespace(wpipe, BIG_PIPE_SIZE) == 0)
nbigpipe++;
@@ -948,7 +948,7 @@ pipe_write(fp, uio, active_cred, flags, td)
(fp->f_flag & FNONBLOCK) == 0 &&
(wpipe->pipe_map.kva || (amountpipekva < LIMITPIPEKVA)) &&
(uio->uio_iov->iov_len >= PIPE_MINDIRECT)) {
- error = pipe_direct_write( wpipe, uio);
+ error = pipe_direct_write(wpipe, uio);
if (error)
break;
continue;
OpenPOWER on IntegriCloud