mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Fix dev-mode build on recent gcc
........ Merged revisions 430274 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@430275 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2693,7 +2693,7 @@ static void send_request_cb(void *token, pjsip_event *e)
|
||||
}
|
||||
break;
|
||||
default:
|
||||
ast_log(LOG_ERROR, "Unexpected PJSIP event %d\n", e->body.tsx_state.type);
|
||||
ast_log(LOG_ERROR, "Unexpected PJSIP event %u\n", e->body.tsx_state.type);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@@ -261,7 +261,7 @@ static void qualify_contact_cb(void *token, pjsip_event *e)
|
||||
|
||||
switch(e->body.tsx_state.type) {
|
||||
default:
|
||||
ast_log(LOG_ERROR, "Unexpected PJSIP event %d\n", e->body.tsx_state.type);
|
||||
ast_log(LOG_ERROR, "Unexpected PJSIP event %u\n", e->body.tsx_state.type);
|
||||
/* Fall through */
|
||||
case PJSIP_EVENT_TRANSPORT_ERROR:
|
||||
case PJSIP_EVENT_TIMER:
|
||||
|
Reference in New Issue
Block a user