TT#121752 fix compiler warning

Change-Id: Icf076b6715c243fd73fdb753a280b19e54fcf9d8
mr9.5.1
Richard Fuchs 5 years ago
parent 4d63f3168c
commit 0b52290644

@ -1818,6 +1818,7 @@ void ng_call_stats(struct call *call, const str *fromtag, const str *totag, benc
GList *l; GList *l;
struct call_monologue *ml; struct call_monologue *ml;
struct call_stats t_b; struct call_stats t_b;
bencode_item_t *ssrc = NULL;
if (!totals) if (!totals)
totals = &t_b; totals = &t_b;
@ -1831,7 +1832,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", call->created.tv_sec);
bencode_dictionary_add_integer(output, "created_us", call->created.tv_usec); bencode_dictionary_add_integer(output, "created_us", call->created.tv_usec);
bencode_dictionary_add_integer(output, "last signal", call->last_signal); 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"); tags = bencode_dictionary_add_dictionary(output, "tags");

Loading…
Cancel
Save