mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +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
@@ -2195,7 +2195,7 @@ static void dump_consumer(struct ast_test *test, struct cts *cts)
|
||||
int i;
|
||||
struct stasis_subscription_change *data;
|
||||
|
||||
ast_test_status_update(test, "Messages received: %ld Final? %s\n", cts->consumer->messages_rxed_len,
|
||||
ast_test_status_update(test, "Messages received: %zu Final? %s\n", cts->consumer->messages_rxed_len,
|
||||
cts->consumer->complete ? "yes" : "no");
|
||||
for (i = 0; i < cts->consumer->messages_rxed_len; i++) {
|
||||
data = stasis_message_data(cts->consumer->messages_rxed[i]);
|
||||
|
Reference in New Issue
Block a user