Skip to content

Commit

Permalink
Fix build on arm32:
Browse files Browse the repository at this point in the history
error: format '%lu' expects argument of type 'long unsigned int', but argument 12 has type 'uint64_t'
  • Loading branch information
sobomax committed Mar 5, 2025
1 parent 58ce3b4 commit 9f102c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/janus/janus_mod.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ static int w_janus_send_request(struct sip_msg *msg, str *janus_id,str *request,
return 1;
}

LM_DBG("Expecting reply for transaction %lu\n",reply_id);
LM_DBG("Expecting reply for transaction %lu\n", (unsigned long)reply_id);

for (total_us = 0; total_us < janus_cmd_timeout * 1000;
total_us += janus_cmd_polling_itv) {
Expand Down

0 comments on commit 9f102c4

Please sign in to comment.