summaryrefslogtreecommitdiffstats
path: root/arptables.c
diff options
context:
space:
mode:
Diffstat (limited to 'arptables.c')
-rw-r--r--arptables.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/arptables.c b/arptables.c
index 845e226..f820ffa 100644
--- a/arptables.c
+++ b/arptables.c
@@ -2164,16 +2164,17 @@ int do_command(int argc, char *argv[], char **table, arptc_handle_t *handle)
"-%c requires packet and byte counter",
opt2char(OPT_COUNTERS));
- if (sscanf(pcnt, "%"PRIu64, &fw.counters.pcnt) != 1)
+ if (sscanf(pcnt, "%"PRIu64,
+ (uint64_t *)&fw.counters.pcnt) != 1)
exit_error(PARAMETER_PROBLEM,
"-%c packet counter not numeric",
opt2char(OPT_COUNTERS));
- if (sscanf(bcnt, "%"PRIu64, &fw.counters.bcnt) != 1)
+ if (sscanf(bcnt, "%"PRIu64,
+ (uint64_t *)&fw.counters.bcnt) != 1)
exit_error(PARAMETER_PROBLEM,
"-%c byte counter not numeric",
opt2char(OPT_COUNTERS));
-
break;