summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>1999-11-25 13:39:39 +0000
committerArtur Grabowski <art@cvs.openbsd.org>1999-11-25 13:39:39 +0000
commita40a2e33ba10c04e632ee3f056c7f48db65d324e (patch)
tree3edc9937a1e9dcfc9808c5531f81c69d3c5df1e5 /sys
parent004d6d4b004a624aa57a0918d7e0ff2dd294702e (diff)
Annoying unnecessary space.
Diffstat (limited to 'sys')
-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 8191b931467..99517d9baf5 100644
--- a/sys/kern/sys_pipe.c
+++ b/sys/kern/sys_pipe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sys_pipe.c,v 1.21 1999/11/21 17:40:26 deraadt Exp $ */
+/* $OpenBSD: sys_pipe.c,v 1.22 1999/11/25 13:39:38 art Exp $ */
/*
* Copyright (c) 1996 John S. Dyson
@@ -480,7 +480,7 @@ pipe_write(fp, uio, cred)
if (size > uio->uio_resid)
size = uio->uio_resid;
if ((error = pipelock(wpipe,1)) == 0) {
- error = uiomove( &wpipe->pipe_buffer.buffer[wpipe->pipe_buffer.in],
+ error = uiomove(&wpipe->pipe_buffer.buffer[wpipe->pipe_buffer.in],
size, uio);
pipeunlock(wpipe);
}