diff options
author | Martin Mares <mj@ucw.cz> | 2004-05-31 22:57:38 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2004-05-31 22:57:38 +0200 |
commit | 6a57bb311018570b6ee7beccafd2075108e346cb (patch) | |
tree | 07d04364cf10345c1f80ddeb595f66ad80e733ed /filter | |
parent | d83faf8dc441259183d87c6669e76e4addc61b21 (diff) | |
download | bird-6a57bb311018570b6ee7beccafd2075108e346cb.tar bird-6a57bb311018570b6ee7beccafd2075108e346cb.zip |
Killed a couple of unused variables.
We really should compile with warnings enabled.
Diffstat (limited to 'filter')
-rw-r--r-- | filter/filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/filter.c b/filter/filter.c index a50dce6..9bae856 100644 --- a/filter/filter.c +++ b/filter/filter.c @@ -294,7 +294,7 @@ interpret(struct f_inst *what) { struct symbol *sym; struct f_val v1, v2, res; - int i,j,k; + int i; res.type = T_VOID; if (!what) |