mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
pjsip_options: Fix format specifier for int64_t rtt.
Contact status rtt is an int64_t and needs the PRId64 macro to properly create the format specifier on 32-bit systems. Change-Id: I4b8ab958fc1e9a179556a9b4ffa49673ba9fdec7
This commit is contained in:
@@ -137,7 +137,7 @@ static void update_contact_status(const struct ast_sip_contact *contact,
|
||||
ast_test_suite_event_notify("AOR_CONTACT_QUALIFY_RESULT",
|
||||
"Contact: %s\r\n"
|
||||
"Status: %s\r\n"
|
||||
"RTT: %ld",
|
||||
"RTT: %" PRId64,
|
||||
ast_sorcery_object_get_id(update),
|
||||
(update->status == AVAILABLE ? "Available" : "Unavailable"),
|
||||
update->rtt);
|
||||
|
Reference in New Issue
Block a user