diff options
author | 2006-04-04 14:17:01 +0000 | |
---|---|---|
committer | 2006-04-04 14:17:01 +0000 | |
commit | 8d54def3b29ad529b6e7cab044d83fdbf8da0f65 (patch) | |
tree | 0545ff2a570a1b3374459e4bfe5e91af94e12f00 | |
parent | dead code removal (diff) | |
download | wireguard-openbsd-8d54def3b29ad529b6e7cab044d83fdbf8da0f65.tar.xz wireguard-openbsd-8d54def3b29ad529b6e7cab044d83fdbf8da0f65.zip |
Remove unused variable, spotted by otto@
-rw-r--r-- | usr.bin/file/apprentice.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/file/apprentice.c b/usr.bin/file/apprentice.c index 4214aec2cb0..c88fb7ccdcb 100644 --- a/usr.bin/file/apprentice.c +++ b/usr.bin/file/apprentice.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apprentice.c,v 1.21 2006/04/04 10:53:40 pedro Exp $ */ +/* $OpenBSD: apprentice.c,v 1.22 2006/04/04 14:17:01 pedro Exp $ */ /* * Copyright (c) Ian F. Darwin 1986-1995. * Software written by Ian F. Darwin and others; @@ -46,7 +46,7 @@ #endif #ifndef lint -FILE_RCSID("@(#)$Id: apprentice.c,v 1.21 2006/04/04 10:53:40 pedro Exp $") +FILE_RCSID("@(#)$Id: apprentice.c,v 1.22 2006/04/04 14:17:01 pedro Exp $") #endif /* lint */ #define EATAB {while (isascii((unsigned char) *l) && \ @@ -382,7 +382,6 @@ private int parse(struct magic_set *ms, struct magic **magicp, uint32_t *nmagicp, char *l, int action) { - int i = 0; struct magic *m; char *t; private const char *fops = FILE_OPS; |