From b7b40cc5a915f01df44a34d258f915139403cc5e Mon Sep 17 00:00:00 2001 From: Claudiu Boriga Date: Tue, 30 Jan 2018 09:21:09 +0100 Subject: [PATCH] Use proper data type for requests statistics --- daemon/call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/call.c b/daemon/call.c index 0f8dbdaba..553970cf7 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -495,7 +495,7 @@ static void call_timer(void *ptr) { struct rtp_stats *rs; unsigned int pt; endpoint_t ep; - int offers, answers, deletes; + u_int64_t offers, answers, deletes; ZERO(hlp); hlp.addr_sfd = g_hash_table_new(g_endpoint_hash, g_endpoint_eq);