summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ip6tables-restore.c4
-rw-r--r--iptables-restore.c4
2 files changed, 2 insertions, 6 deletions
diff --git a/ip6tables-restore.c b/ip6tables-restore.c
index d8a45da9..44a051f2 100644
--- a/ip6tables-restore.c
+++ b/ip6tables-restore.c
@@ -83,9 +83,7 @@ static int parse_counters(char *string, struct ip6t_counters *ctr)
unsigned long long pcnt, bcnt;
int ret;
- ret = sscanf(string, "[%llu:%llu]",
- (unsigned long long *)&pcnt,
- (unsigned long long *)&bcnt);
+ ret = sscanf(string, "[%llu:%llu]", &pcnt, &bcnt);
ctr->pcnt = pcnt;
ctr->bcnt = bcnt;
return ret == 2;
diff --git a/iptables-restore.c b/iptables-restore.c
index cd23cfa2..e2d1859e 100644
--- a/iptables-restore.c
+++ b/iptables-restore.c
@@ -83,9 +83,7 @@ static int parse_counters(char *string, struct ipt_counters *ctr)
unsigned long long pcnt, bcnt;
int ret;
- ret = sscanf(string, "[%llu:%llu]",
- (unsigned long long *)&pcnt,
- (unsigned long long *)&bcnt);
+ ret = sscanf(string, "[%llu:%llu]", &pcnt, &bcnt);
ctr->pcnt = pcnt;
ctr->bcnt = bcnt;
return ret == 2;