From 875441ea60d9fd9378475526f2f632b932790553 Mon Sep 17 00:00:00 2001 From: Patrick McHardy Date: Wed, 17 Oct 2007 08:48:58 +0000 Subject: Fix sscanf type errors --- ip6tables-restore.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'ip6tables-restore.c') diff --git a/ip6tables-restore.c b/ip6tables-restore.c index a34e2260..8b56c083 100644 --- a/ip6tables-restore.c +++ b/ip6tables-restore.c @@ -77,11 +77,15 @@ ip6tc_handle_t create_handle(const char *tablename, const char* modprobe) static int parse_counters(char *string, struct ip6t_counters *ctr) { - u_int64_t *pcnt, *bcnt; - - pcnt = &ctr->pcnt; - bcnt = &ctr->bcnt; - return (sscanf(string, "[%llu:%llu]", (unsigned long long *)pcnt, (unsigned long long *)bcnt) == 2); + unsigned long long pcnt, bcnt; + int ret; + + ret = sscanf(string, "[%llu:%llu]", + (unsigned long long *)&pcnt, + (unsigned long long *)&bcnt); + ctr->pcnt = pcnt; + ctr->bcnt = bcnt; + return ret == 2; } /* global new argv and argc */ -- cgit v1.2.3