X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b7c007d68cc9aabd52746479c68a8287a087fe3..abf7c33aff8279f498000149d39448946c3297b3:/src/mc/mc_protocol.c diff --git a/src/mc/mc_protocol.c b/src/mc/mc_protocol.c index 0034148403..28150330fd 100644 --- a/src/mc/mc_protocol.c +++ b/src/mc/mc_protocol.c @@ -39,7 +39,7 @@ int MC_protocol_hello(int socket) { int e; if ((e = MC_protocol_send_simple_message(socket, MC_MESSAGE_HELLO)) != 0) { - XBT_ERROR("Could not send HELLO message: %s", strerror(e)); + XBT_ERROR("Could not send HELLO message"); return 1; } @@ -51,7 +51,7 @@ int MC_protocol_hello(int socket) if (errno == EINTR) continue; else { - XBT_ERROR("Could not receive HELLO message: %s", strerror(errno)); + XBT_ERROR("Could not receive HELLO message"); return 2; } }