mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 04:11:08 +00:00
silence compiler warning on 64-bit platforms (this variable is an 'int' anyway, comparing it to 'signed long' is not useful)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@47635 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3474,7 +3474,7 @@ static int queue_l2l3(msg_t *msg)
|
||||
int manager_isdn_handler(iframe_t *frm ,msg_t *msg)
|
||||
{
|
||||
|
||||
if (frm->dinfo==(signed long)0xffffffff && frm->prim==(PH_DATA|CONFIRM)) {
|
||||
if (frm->dinfo==0xffffffff && frm->prim==(PH_DATA|CONFIRM)) {
|
||||
cb_log(0,0,"SERIOUS BUG, dinfo == 0xffffffff, prim == PH_DATA | CONFIRM !!!!\n");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user