diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2014-05-17 15:19:18 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2014-05-17 15:19:18 +0000 |
commit | 21bb32c8020817089c4c8d0e78c54c9b1827dfb7 (patch) | |
tree | 5b3e5d05ff4ca0648ab5460ce13cf560a540b4eb | |
parent | a414f1ec96d33106505dc2856bfa3356c2ac43de (diff) |
remove unused variable
ok tedu@
-rw-r--r-- | usr.bin/yacc/lalr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/yacc/lalr.c b/usr.bin/yacc/lalr.c index 201fbcc6fd8..909ef139e9a 100644 --- a/usr.bin/yacc/lalr.c +++ b/usr.bin/yacc/lalr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lalr.c,v 1.16 2014/03/13 01:18:22 tedu Exp $ */ +/* $OpenBSD: lalr.c,v 1.17 2014/05/17 15:19:17 chl Exp $ */ /* $NetBSD: lalr.c,v 1.4 1996/03/19 03:21:33 jtc Exp $ */ /* @@ -204,7 +204,7 @@ void set_goto_map(void) { shifts *sp; - int i, j, k, symbol; + int i, k, symbol; int state1, state2; short *temp_map; |