summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortobias <tobias@openbsd.org>2015-03-26 21:26:43 +0000
committertobias <tobias@openbsd.org>2015-03-26 21:26:43 +0000
commitfd4bc584f9e0cd4480b21aeb0e67a64cbbc35376 (patch)
treeb8425c02f469542df98a0b3173802ecde40aceae
parentThe code in socks.c writes multiple times in a row to a socket. If the (diff)
downloadwireguard-openbsd-fd4bc584f9e0cd4480b21aeb0e67a64cbbc35376.tar.xz
wireguard-openbsd-fd4bc584f9e0cd4480b21aeb0e67a64cbbc35376.zip
Whitespace fix: Closing bracket belongs to if-block, not enclosing for
-rw-r--r--usr.bin/tail/read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tail/read.c b/usr.bin/tail/read.c
index a027fa9f151..757e8cd12b0 100644
--- a/usr.bin/tail/read.c
+++ b/usr.bin/tail/read.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: read.c,v 1.15 2015/02/06 23:21:59 millert Exp $ */
+/* $OpenBSD: read.c,v 1.16 2015/03/26 21:26:43 tobias Exp $ */
/* $NetBSD: read.c,v 1.4 1994/11/23 07:42:07 jtc Exp $ */
/*-
@@ -91,7 +91,7 @@ bytes(FILE *fp, off_t off)
if (*t == '\n' && len) {
WR(t + 1, len);
len = 0;
- }
+ }
if (wrap) {
tlen = len;
for (t = ep - 1, len = 0; t >= p; --t, ++len)