mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +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:
		| @@ -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