Signed-off-by: Jan Engelhardt <jengelh@xxxxxxxxxx> --- ip6tables-restore.c | 4 +--- iptables-restore.c | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/ip6tables-restore.c b/ip6tables-restore.c index d8a45da..44a051f 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 cd23cfa..e2d1859 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; -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html