mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
tests: Fix compilation errors on 32-bit.
Fix compilation errors caused by using size_t instead of uintmax_t and non-portable format specifiers. ASTERISK-30273 #close Change-Id: I363e6057ef84d54b88af80d23ad6147eef9216ee
This commit is contained in:
committed by
Friendly Automation
parent
7b2d3a6411
commit
26283a4d59
@@ -384,9 +384,9 @@ static pj_status_t set_outbound_authentication_credentials(pjsip_auth_clt_sess *
|
||||
res = pjsip_auth_clt_set_credentials(auth_sess, cred_count, creds_array);
|
||||
ast_free(creds_array);
|
||||
if (res == PJ_SUCCESS) {
|
||||
ast_debug(3, "Set %"PRIu64" credentials in auth session\n", cred_count);
|
||||
ast_debug(3, "Set %zu credentials in auth session\n", cred_count);
|
||||
} else {
|
||||
ast_log(LOG_ERROR, "Failed to set %"PRIu64" credentials in auth session\n", cred_count);
|
||||
ast_log(LOG_ERROR, "Failed to set %zu credentials in auth session\n", cred_count);
|
||||
}
|
||||
|
||||
cleanup:
|
||||
|
Reference in New Issue
Block a user