diff options
author | lum <lum@cvs.openbsd.org> | 2013-06-01 09:50:48 +0000 |
---|---|---|
committer | lum <lum@cvs.openbsd.org> | 2013-06-01 09:50:48 +0000 |
commit | 786bbfc14be1f59f643c0d189e0a2fa7b271381c (patch) | |
tree | 37cf8b17e142c4a8f37740683376b768cbba05be | |
parent | 0e1e2da86ab15e69fe076498a403be59a591945d (diff) |
tidy-up int declarations as suggested by florian@
-rw-r--r-- | usr.bin/mg/paragraph.c | 8 |
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) |