Commit 9c92154e authored by Filippo Della Betta's avatar Filippo Della Betta Committed by Youness Alaoui

fixed warning guint32/guint64

parent 35bb6ebf
...@@ -288,12 +288,12 @@ component_set_selected_remote_candidate (NiceAgent *agent, Component *component, ...@@ -288,12 +288,12 @@ component_set_selected_remote_candidate (NiceAgent *agent, Component *component,
{ {
NiceCandidate *local = NULL; NiceCandidate *local = NULL;
NiceCandidate *remote = NULL; NiceCandidate *remote = NULL;
guint32 priority = 0; guint64 priority = 0;
GSList *item = NULL; GSList *item = NULL;
for (item = component->local_candidates; item; item = g_slist_next (item)) { for (item = component->local_candidates; item; item = g_slist_next (item)) {
NiceCandidate *tmp = item->data; NiceCandidate *tmp = item->data;
guint32 tmp_prio = 0; guint64 tmp_prio = 0;
if (tmp->transport != candidate->transport || if (tmp->transport != candidate->transport ||
tmp->addr.s.addr.sa_family != candidate->addr.s.addr.sa_family || tmp->addr.s.addr.sa_family != candidate->addr.s.addr.sa_family ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment