diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-03-28 14:17:14 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-03-28 14:17:14 +0000 |
commit | 946ccfd38933cf83d2b208eab246f05292739668 (patch) | |
tree | e19aee93cd26ec6f60ce8a8494a482f86025ed4f /usr.sbin | |
parent | 99a413fb969b4c9c656515ce816ac7f20839aa72 (diff) |
Remove unused variable found by lint.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospfd/parse.y | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/parse.y b/usr.sbin/ospfd/parse.y index ae1d1e9ad5e..564928298c7 100644 --- a/usr.sbin/ospfd/parse.y +++ b/usr.sbin/ospfd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.46 2007/03/22 15:56:52 claudio Exp $ */ +/* $OpenBSD: parse.y,v 1.47 2007/03/28 14:17:13 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -45,7 +45,6 @@ static FILE *fin = NULL; static int lineno = 1; static int errors = 0; char *infile; -char *start_state; struct area *area = NULL; struct iface *iface = NULL; |