From: Rusty Russell Date: Sun, 7 Jan 2001 06:54:51 +0000 (+0000) Subject: Fix compile warning about const. X-Git-Tag: v1.2.1~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=082ba02f9ce9c64bb4beb76f7075e7324d738e41;p=thirdparty%2Fiptables.git Fix compile warning about const. --- diff --git a/iptables-save.c b/iptables-save.c index a97d4481..2e716e1e 100644 --- a/iptables-save.c +++ b/iptables-save.c @@ -175,7 +175,7 @@ static void print_rule(const struct ipt_entry *e, printf("-j %s ", iptc_get_target(e, h)); /* Print targinfo part */ - t = ipt_get_target(e); + t = ipt_get_target((struct ipt_entry *)e); if (t->u.user.name[0]) { struct iptables_target *target = find_target(t->u.user.name, TRY_LOAD);