Merge "ari/ari_websockets.c: Fix ast_debug parameter type mismatch."

changes/18/1018/3
Mark Michelson 11 years ago committed by Gerrit Code Review
commit 5d6b93a006

@ -174,7 +174,7 @@ int ast_ari_websocket_session_write(struct ast_ari_websocket_session *session,
return -1;
}
ast_debug(3, "Examining ARI event (length %zu): \n%s\n", strlen(str), str);
ast_debug(3, "Examining ARI event (length %u): \n%s\n", (unsigned int) strlen(str), str);
if (ast_websocket_write_string(session->ws_session, str)) {
ast_log(LOG_NOTICE, "Problem occurred during websocket write, websocket closed\n");
return -1;

Loading…
Cancel
Save