Skip to content

Commit 6548f69

Browse files
committed
Fix build on arm32:
error: format '%lu' expects argument of type 'long unsigned int', but argument 12 has type 'uint64_t'
1 parent 57e8b50 commit 6548f69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/janus/janus_mod.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ static int w_janus_send_request(struct sip_msg *msg, str *janus_id,str *request,
229229
return 1;
230230
}
231231

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

234234
for (total_us = 0; total_us < janus_cmd_timeout * 1000;
235235
total_us += janus_cmd_polling_itv) {

0 commit comments

Comments
 (0)