summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorart <art@openbsd.org>1999-11-25 13:39:38 +0000
committerart <art@openbsd.org>1999-11-25 13:39:38 +0000
commit464ecb85c1a81abd8600a2ff9cf927bf4e3e157d (patch)
tree52e764f3cfbdd708f766b73fbb3a720de7f79c48 /sys
parentAllow arguments to games and be more selective when checking for valid games. (diff)
downloadwireguard-openbsd-464ecb85c1a81abd8600a2ff9cf927bf4e3e157d.tar.xz
wireguard-openbsd-464ecb85c1a81abd8600a2ff9cf927bf4e3e157d.zip
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);
}