aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorcrichter <crichter@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-29 14:26:43 +0000
committercrichter <crichter@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-29 14:26:43 +0000
commitfb8b94f57778150bf2280bb238e9746001f65615 (patch)
tree401c829d4f5659ebcd679ec641374cece804558f /channels
parent83e4f560c1fd199f22236714d5204e7f70e18821 (diff)
fixed no dtmf detect on 64 bit
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@16085 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/misdn/isdn_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/misdn/isdn_lib.c b/channels/misdn/isdn_lib.c
index de922b75c..805316805 100644
--- a/channels/misdn/isdn_lib.c
+++ b/channels/misdn/isdn_lib.c
@@ -2046,7 +2046,7 @@ int handle_bchan(msg_t *msg)
case PH_CONTROL|INDICATION:
{
- unsigned long cont = *((unsigned long *)&frm->data.p);
+ unsigned int cont = *((unsigned int *)&frm->data.p);
cb_log(4, stack->port, "PH_CONTROL: channel:%d oad%d:%s dad%d:%s \n", bc->channel, bc->onumplan,bc->oad, bc->dnumplan,bc->dad);