diff options
author | 2006-03-17 22:02:58 +0000 | |
---|---|---|
committer | 2006-03-17 22:02:58 +0000 | |
commit | c0a43ef1013284f99dd9bd76e90054a7a8fe808a (patch) | |
tree | 971bec81bce91e45b71438587c67f233af4b462d | |
parent | FILE * leak (diff) | |
download | wireguard-openbsd-c0a43ef1013284f99dd9bd76e90054a7a8fe808a.tar.xz wireguard-openbsd-c0a43ef1013284f99dd9bd76e90054a7a8fe808a.zip |
more delinting.
-rw-r--r-- | usr.bin/tip/value.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tip/value.c b/usr.bin/tip/value.c index 9f262c7ff23..f381a1f1773 100644 --- a/usr.bin/tip/value.c +++ b/usr.bin/tip/value.c @@ -1,4 +1,4 @@ -/* $OpenBSD: value.c,v 1.13 2006/03/17 14:43:06 moritz Exp $ */ +/* $OpenBSD: value.c,v 1.14 2006/03/17 22:02:58 moritz Exp $ */ /* $NetBSD: value.c,v 1.6 1997/02/11 09:24:09 mrg Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)value.c 8.1 (Berkeley) 6/6/93"; #endif -static const char rcsid[] = "$OpenBSD: value.c,v 1.13 2006/03/17 14:43:06 moritz Exp $"; +static const char rcsid[] = "$OpenBSD: value.c,v 1.14 2006/03/17 22:02:58 moritz Exp $"; #endif /* not lint */ #include "tip.h" @@ -48,7 +48,7 @@ static void vprint(value_t *); static int vaccess(unsigned int, unsigned int); static char *vinterp(char *, int); -static int col = 0; +static size_t col = 0; /* * Variable manipulation |