From d17e26adb687eb1b716f3133604cea9bd6dd6644 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Mon, 25 May 2015 13:10:12 -0400 Subject: [PATCH] segfault fix for debug builds closes #117 --- daemon/call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/call.c b/daemon/call.c index 347999159..d6ab31552 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -3403,7 +3403,7 @@ static struct call_monologue *call_get_monologue(struct call *call, const str *f /* we need both sides of the dialogue even in the initial offer, so create * another monologue without to-tag (to be filled in later) */ new_branch: - __C_DBG("create new \"other side\" monologue for viabranch "STR_FORMAT, STR_FMT(viabranch)); + __C_DBG("create new \"other side\" monologue for viabranch "STR_FORMAT, STR_FMT0(viabranch)); os = __monologue_create(call); ret->active_dialogue = os; os->active_dialogue = ret;