From 50d63ffff4603d056952453358b9ab32e1489a20 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 15 Dec 2011 12:30:44 +0000 Subject: [PATCH] fix "make debug" --- daemon/call.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daemon/call.c b/daemon/call.c index bdcf9633d..7d296e4ff 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -886,9 +886,9 @@ static int call_streams(struct call *c, GQueue *s, const char *tag, int opmode) cs_o = l->data; for (x = 0; x < 2; x++) { r = &cs_o->peers[x].rtps[0]; - DBG("comparing new %i:"IPF6":%u/%s to old %i:"IPF6":%u/%s", - IPP(t->ip46), t->port, tag, - IPP(r->peer_advertised.ip46), r->peer_advertised.port, cs_o->peers[x].tag); + DBG("comparing new "IP6F":%u/%s to old "IP6F":%u/%s", + IP6P(&t->ip46), t->port, tag, + IP6P(&r->peer_advertised.ip46), r->peer_advertised.port, cs_o->peers[x].tag); if (!IN6_ARE_ADDR_EQUAL(&r->peer_advertised.ip46, &t->ip46)) continue;