X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/97ceda0f19b52d3ba1833243a272dcfc57745bf1..2fe63dd198ff331f7fe3a483bc2e2f71bdb8a045:/src/msg/msg_mailbox.c diff --git a/src/msg/msg_mailbox.c b/src/msg/msg_mailbox.c index 1f984107d9..a6f053b28c 100644 --- a/src/msg/msg_mailbox.c +++ b/src/msg/msg_mailbox.c @@ -185,7 +185,6 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task, { xbt_ex_t e; MSG_error_t ret = MSG_OK; - smx_comm_t comm; simdata_task_t t_simdata = NULL; m_process_t process = MSG_process_self(); #ifdef HAVE_TRACING @@ -219,7 +218,7 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task, SIMIX_network_send(mailbox->rdv, t_simdata->message_size, t_simdata->rate, timeout, task, sizeof(void *), - &comm, task); + &(t_simdata->comm), task); } CATCH(e) {