diff options
author | melifaro <melifaro@FreeBSD.org> | 2013-03-20 10:36:38 +0000 |
---|---|---|
committer | melifaro <melifaro@FreeBSD.org> | 2013-03-20 10:36:38 +0000 |
commit | d50a0fe376234526284497deaba11cfcca6c3c35 (patch) | |
tree | 5ed84c78700ae53fa871e21bacb7c90db2b1c682 /sbin/ipfw | |
parent | 31a6358fffd6950960c98280182bba118f5ac9f9 (diff) | |
download | FreeBSD-src-d50a0fe376234526284497deaba11cfcca6c3c35.zip FreeBSD-src-d50a0fe376234526284497deaba11cfcca6c3c35.tar.gz |
Remove unused variable.
Diffstat (limited to 'sbin/ipfw')
-rw-r--r-- | sbin/ipfw/ipfw2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/ipfw/ipfw2.c b/sbin/ipfw/ipfw2.c index 39934ab..5b37995 100644 --- a/sbin/ipfw/ipfw2.c +++ b/sbin/ipfw/ipfw2.c @@ -4122,10 +4122,9 @@ ipfw_table_handler(int ac, char *av[]) int do_add; int is_all; size_t len; - uint32_t a, mask; + uint32_t a; uint32_t tables_max; - mask = 0; // XXX uninitialized ? len = sizeof(tables_max); if (sysctlbyname("net.inet.ip.fw.tables_max", &tables_max, &len, NULL, 0) == -1) { |