Fixed segfault.

This commit is contained in:
irungentoo 2014-07-28 09:58:53 -04:00
parent 7bbde2d6c7
commit e1158be5a6
No known key found for this signature in database
GPG Key ID: 10349DC9BED89E98

View File

@ -1212,7 +1212,7 @@ static int handle_recv_reject ( MSISession *session, MSICall *call, MSIMessage *
return 0;
}
LOGGER_DEBUG("Session: %p Handling 'reject' on call: %s", session, call->call_idx);
LOGGER_DEBUG("Session: %p Handling 'reject' on call: %u", session, call->call_idx);
invoke_callback(session, call->call_idx, MSI_OnReject);
@ -1233,7 +1233,7 @@ static int handle_recv_cancel ( MSISession *session, MSICall *call, MSIMessage *
return 0;
}
LOGGER_DEBUG("Session: %p Handling 'cancel' on call: %s", session, call->call_idx);
LOGGER_DEBUG("Session: %p Handling 'cancel' on call: %u", session, call->call_idx);
invoke_callback(session, call->call_idx, MSI_OnCancel);