From dd4e3236089ad3d6c0fdb49699f04f60f1d3e4fa Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Fri, 22 Apr 2016 16:37:45 +0200 Subject: [PATCH] Fix printf format --- src/simix/smx_network.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simix/smx_network.cpp b/src/simix/smx_network.cpp index 61338c65a1..981fe60fbc 100644 --- a/src/simix/smx_network.cpp +++ b/src/simix/smx_network.cpp @@ -438,7 +438,7 @@ smx_synchro_t SIMIX_comm_irecv(smx_process_t dst_proc, smx_mailbox_t mbox, void other_synchro = SIMIX_deque_get_filtered(mbox->comm_queue, SIMIX_COMM_SEND, match_fun, data, this_synchro); if (!other_synchro) { - XBT_DEBUG("Receive pushed first %lu", mbox->comm_queue->size()); + XBT_DEBUG("Receive pushed first %zu", mbox->comm_queue->size()); other_synchro = this_synchro; SIMIX_mbox_push(mbox, this_synchro); } else { -- 2.20.1