summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlum <lum@openbsd.org>2013-06-01 09:50:47 +0000
committerlum <lum@openbsd.org>2013-06-01 09:50:47 +0000
commit2baac12a59ac64bca3cbbb0bda3fa4ad94ea0b5a (patch)
tree65e8abe43628f38514643a3252152080dad0efe6
parentregen (diff)
downloadwireguard-openbsd-2baac12a59ac64bca3cbbb0bda3fa4ad94ea0b5a.tar.xz
wireguard-openbsd-2baac12a59ac64bca3cbbb0bda3fa4ad94ea0b5a.zip
tidy-up int declarations as suggested by florian@
-rw-r--r--usr.bin/mg/paragraph.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/mg/paragraph.c b/usr.bin/mg/paragraph.c
index 29df73d5868..53987241ee7 100644
--- a/usr.bin/mg/paragraph.c
+++ b/usr.bin/mg/paragraph.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: paragraph.c,v 1.25 2013/06/01 09:46:31 lum Exp $ */
+/* $OpenBSD: paragraph.c,v 1.26 2013/06/01 09:50:47 lum Exp $ */
/* This file is in the public domain. */
@@ -24,8 +24,7 @@ static int fillcol = 70;
int
gotobop(int f, int n)
{
- int col;
- int nospace = 0;
+ int col, nospace;
/* the other way... */
if (n < 0)
@@ -63,8 +62,7 @@ gotobop(int f, int n)
int
gotoeop(int f, int n)
{
- int col;
- int nospace;
+ int col, nospace;
/* the other way... */
if (n < 0)