diff options
author | 2012-04-10 09:08:50 +0000 | |
---|---|---|
committer | 2012-04-10 09:08:50 +0000 | |
commit | d1e9933a0b970533c7fab1967b3dea276f695fb0 (patch) | |
tree | 2548ad8dfdc5a8e17f4387246e515f3d4df65dc6 | |
parent | POSIX locks should track the process's pid and not the thread's id (diff) | |
download | wireguard-openbsd-d1e9933a0b970533c7fab1967b3dea276f695fb0.tar.xz wireguard-openbsd-d1e9933a0b970533c7fab1967b3dea276f695fb0.zip |
remove unused variable.
ok nicm millert
-rw-r--r-- | usr.bin/yacc/symtab.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/yacc/symtab.c b/usr.bin/yacc/symtab.c index 9d2cb2dc589..ba9e6dc5cd0 100644 --- a/usr.bin/yacc/symtab.c +++ b/usr.bin/yacc/symtab.c @@ -1,4 +1,4 @@ -/* $OpenBSD: symtab.c,v 1.14 2012/03/03 19:15:00 nicm Exp $ */ +/* $OpenBSD: symtab.c,v 1.15 2012/04/10 09:08:50 chl Exp $ */ /* $NetBSD: symtab.c,v 1.4 1996/03/19 03:21:48 jtc Exp $ */ /* @@ -113,7 +113,6 @@ lookup(char *name) void create_symbol_table(void) { - int i; bucket *bp; symbol_table = CALLOC(TABLE_SIZE, sizeof(bucket *)); |