Browse Source

Use proper data type for requests statistics

pull/446/head
Claudiu Boriga 8 years ago
parent
commit
b7b40cc5a9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/call.c

+ 1
- 1
daemon/call.c View File

@ -495,7 +495,7 @@ static void call_timer(void *ptr) {
struct rtp_stats *rs; struct rtp_stats *rs;
unsigned int pt; unsigned int pt;
endpoint_t ep; endpoint_t ep;
int offers, answers, deletes;
u_int64_t offers, answers, deletes;
ZERO(hlp); ZERO(hlp);
hlp.addr_sfd = g_hash_table_new(g_endpoint_hash, g_endpoint_eq); hlp.addr_sfd = g_hash_table_new(g_endpoint_hash, g_endpoint_eq);


Loading…
Cancel
Save