From: Jeff Peeler Date: Wed, 4 Nov 2009 16:25:15 +0000 (+0000) Subject: fix trunk building X-Git-Tag: 11.0.0-beta1~3924 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=562a18f5336ce6338d668d19005ae212f875e075;p=thirdparty%2Fasterisk.git fix trunk building git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@227643 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index 77caff8363..32344f77eb 100644 --- a/channels/chan_dahdi.c +++ b/channels/chan_dahdi.c @@ -12623,7 +12623,7 @@ static void *ss7_linkset(void *data) case CPG_EVENT_PROGRESS: case CPG_EVENT_INBANDINFO: { - struct ast_frame f = { AST_FRAME_CONTROL, AST_CONTROL_PROGRESS, }; + struct ast_frame f = { AST_FRAME_CONTROL, { AST_CONTROL_PROGRESS } }; ast_debug(1, "Queuing frame PROGRESS on CIC %d\n", p->cic); dahdi_queue_frame(p, &f, linkset); p->progress = 1; @@ -12845,7 +12845,7 @@ static void *ss7_linkset(void *data) isup_rel(ss7, e->acm.call, -1); break; } else { - struct ast_frame f = { AST_FRAME_CONTROL, AST_CONTROL_PROCEEDING, }; + struct ast_frame f = { AST_FRAME_CONTROL, { AST_CONTROL_PROCEEDING } }; p = linkset->pvts[chanpos];