X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6a42d0b4d34e2b9777922430ef85646dabbefa20..4a6b0a991a67e6f2f67c03fed43529e078da7115:/examples/msg/token_ring/ring_call.c diff --git a/examples/msg/token_ring/ring_call.c b/examples/msg/token_ring/ring_call.c index 6b00f34e19..06a46488bb 100644 --- a/examples/msg/token_ring/ring_call.c +++ b/examples/msg/token_ring/ring_call.c @@ -7,7 +7,6 @@ #include #include #include "simgrid/msg.h" -#include "src/surf/surf_private.h" int host(int argc, char *argv[]); unsigned int task_comp_size = 50000000; @@ -30,7 +29,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(ring, int host(int argc, char *argv[]) { - int host_number = atoi(MSG_process_get_name(MSG_process_self())); + int host_number = xbt_str_parse_int(MSG_process_get_name(MSG_process_self()), "Process name must be an integer but is: %s"); char mailbox[256]; msg_task_t task = NULL; XBT_ATTRIB_UNUSED int res;