summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2014-07-28 09:58:53 -0400
committerirungentoo <irungentoo@gmail.com>2014-07-28 09:58:53 -0400
commite1158be5a6fa10187dc70ef88a0b7c6dc0cf18ac (patch)
tree87b57405cd933649dd37d25eb9d7f54764aac6bb
parent7bbde2d6c75cefdad29e5d734ce180c7a85fc17f (diff)
Fixed segfault.
-rw-r--r--toxav/msi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxav/msi.c b/toxav/msi.c
index c4b09894..02864e56 100644
--- a/toxav/msi.c
+++ b/toxav/msi.c
@@ -1212,7 +1212,7 @@ static int handle_recv_reject ( MSISession *session, MSICall *call, MSIMessage *
1212 return 0; 1212 return 0;
1213 } 1213 }
1214 1214
1215 LOGGER_DEBUG("Session: %p Handling 'reject' on call: %s", session, call->call_idx); 1215 LOGGER_DEBUG("Session: %p Handling 'reject' on call: %u", session, call->call_idx);
1216 1216
1217 invoke_callback(session, call->call_idx, MSI_OnReject); 1217 invoke_callback(session, call->call_idx, MSI_OnReject);
1218 1218
@@ -1233,7 +1233,7 @@ static int handle_recv_cancel ( MSISession *session, MSICall *call, MSIMessage *
1233 return 0; 1233 return 0;
1234 } 1234 }
1235 1235
1236 LOGGER_DEBUG("Session: %p Handling 'cancel' on call: %s", session, call->call_idx); 1236 LOGGER_DEBUG("Session: %p Handling 'cancel' on call: %u", session, call->call_idx);
1237 1237
1238 invoke_callback(session, call->call_idx, MSI_OnCancel); 1238 invoke_callback(session, call->call_idx, MSI_OnCancel);
1239 1239