Browse Source

TT#121752 fix compiler warning

Change-Id: Icf076b6715c243fd73fdb753a280b19e54fcf9d8
pull/1346/head
Richard Fuchs 4 years ago
parent
commit
3f8892082d
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      daemon/call_interfaces.c

+ 2
- 1
daemon/call_interfaces.c View File

@ -1815,6 +1815,7 @@ void ng_call_stats(struct call *call, const str *fromtag, const str *totag, benc
GList *l;
struct call_monologue *ml;
struct call_stats t_b;
bencode_item_t *ssrc = NULL;
if (!totals)
totals = &t_b;
@ -1828,7 +1829,7 @@ void ng_call_stats(struct call *call, const str *fromtag, const str *totag, benc
bencode_dictionary_add_integer(output, "created", call->created.tv_sec);
bencode_dictionary_add_integer(output, "created_us", call->created.tv_usec);
bencode_dictionary_add_integer(output, "last signal", call->last_signal);
bencode_item_t *ssrc = bencode_dictionary_add_dictionary(output, "SSRC");
ssrc = bencode_dictionary_add_dictionary(output, "SSRC");
tags = bencode_dictionary_add_dictionary(output, "tags");


Loading…
Cancel
Save