X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c94b4ff91c7be1736cf07e9db73f992335bdbef3..e487ef4538248f261ddb6e814357593df7646e33:/src/msg/environment.c diff --git a/src/msg/environment.c b/src/msg/environment.c index f5ada54354..fa6accc0c4 100644 --- a/src/msg/environment.c +++ b/src/msg/environment.c @@ -34,12 +34,12 @@ m_host_t MSG_get_host_by_name(const char *name) { smx_host_t simix_h = NULL; - simix_h = SIMIX_host_get_by_name(name); - if (simix_h == NULL) { + + if (simix_h == NULL) return NULL; - } else - return (m_host_t) simix_h->data; + + return (m_host_t)SIMIX_host_get_data(simix_h); } /** \ingroup msg_easier_life