Fix compile warning about const.
diff --git a/iptables-save.c b/iptables-save.c
index a97d448..2e716e1 100644
--- a/iptables-save.c
+++ b/iptables-save.c
@@ -175,7 +175,7 @@
 	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);