Ditch a couple of unneeded variables to silence gcc warnings

This commit is contained in:
Alex Young
2012-05-31 14:09:35 +01:00
parent b90b73fba6
commit 1aec12613c
2 changed files with 4 additions and 5 deletions

View File

@@ -82,8 +82,7 @@ int parse_acl(struct ip_and_mask (**out)[], int max, char **entries)
}
for (i=0; i < max; i++) {
struct ip_and_mask* entry = list[i];
debug("acl entry %d @ %p has mask %d", i, entry, entry->mask);
debug("acl entry %d @ %p has mask %d", i, list[i], list[i]->mask);
}
return max;