diff options
author | 2007-07-24 19:00:17 +0000 | |
---|---|---|
committer | 2007-07-24 19:00:17 +0000 | |
commit | c9944a33d234151de4c9f130845bcb4421d69f23 (patch) | |
tree | 00f22ec142cbab45d9ef614e919e1dbb378c5d7b | |
parent | simplify computations in the var module: instead of advancing a char * (diff) | |
download | wireguard-openbsd-c9944a33d234151de4c9f130845bcb4421d69f23.tar.xz wireguard-openbsd-c9944a33d234151de4c9f130845bcb4421d69f23.zip |
zap unused variable
-rw-r--r-- | usr.bin/make/var.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/make/var.c b/usr.bin/make/var.c index 747eb3e534e..d7ee6e820f2 100644 --- a/usr.bin/make/var.c +++ b/usr.bin/make/var.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: var.c,v 1.70 2007/07/24 18:58:48 espie Exp $ */ +/* $OpenBSD: var.c,v 1.71 2007/07/24 19:00:17 espie Exp $ */ /* $NetBSD: var.c,v 1.18 1997/03/18 19:24:46 christos Exp $ */ /* @@ -825,7 +825,6 @@ bool Var_ParseSkip(const char **pstr, SymTable *ctxt) { const char *tstr; - Var *v; const char *str = *pstr; struct Name name; bool result; |