X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b6fe7e75cd720400327e0585247824b7b82805aa..dac5d8074d0d4971410ad158c52f1bc6f1dda9a4:/src/s4u/s4u_mailbox.cpp diff --git a/src/s4u/s4u_mailbox.cpp b/src/s4u/s4u_mailbox.cpp index e49465c6fa..c87c3808ed 100644 --- a/src/s4u/s4u_mailbox.cpp +++ b/src/s4u/s4u_mailbox.cpp @@ -28,7 +28,7 @@ MailboxPtr Mailbox::byName(const char*name) { // Only one simix object will be created, but two S4U objects will be created. // Only one S4U object will be stored in the hashmap and used, and the other // one will be leaked. - smx_mailbox_t mbox = simcall_mbox_get_by_name(name); + smx_mailbox_t mbox = SIMIX_mbox_get_by_name(name); if (mbox == nullptr) mbox = simcall_mbox_create(name); return MailboxPtr(&mbox->piface_, true);