From f178c67fb04fde8a6e5f7d20dafee8d3220a0ed2 Mon Sep 17 00:00:00 2001 From: alfred Date: Sat, 12 Oct 2002 22:26:41 +0000 Subject: whitespace fixes. --- sys/kern/sys_pipe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/kern/sys_pipe.c') 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; -- cgit v1.1