summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2001-05-24 18:06:22 +0000
committeralfred <alfred@FreeBSD.org>2001-05-24 18:06:22 +0000
commitb5d4bfc0e39c5c8707a6ec6965230610f5162d3c (patch)
treeaa4175c8122f09e5da8353ee3aa4679039c54e90
parentcb02b9b724a347c73fd99267684264847cf49a62 (diff)
downloadFreeBSD-src-b5d4bfc0e39c5c8707a6ec6965230610f5162d3c.zip
FreeBSD-src-b5d4bfc0e39c5c8707a6ec6965230610f5162d3c.tar.gz
whitespace/style
-rw-r--r--sys/kern/sys_pipe.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c
index c3508e0..c347a58 100644
--- a/sys/kern/sys_pipe.c
+++ b/sys/kern/sys_pipe.c
@@ -500,7 +500,8 @@ pipe_read(fp, uio, cred, flags, p)
error = EAGAIN;
} else {
rpipe->pipe_state |= PIPE_WANTR;
- if ((error = tsleep(rpipe, PRIBIO|PCATCH, "piperd", 0)) == 0)
+ if ((error = tsleep(rpipe, PRIBIO | PCATCH,
+ "piperd", 0)) == 0)
error = pipelock(rpipe, 1);
}
if (error)
OpenPOWER on IntegriCloud