From bb8be30857edd501e701c2f22db6c59bd6839c87 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Mon, 31 Jan 2011 02:41:23 +0100 Subject: iptables: remove more redundant casts Signed-off-by: Jan Engelhardt --- iptables-restore.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'iptables-restore.c') 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; -- cgit v1.2.3