X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8ba0bc2f48c6b9b96dfedd8fd383b941d5fdd0b..f4206a23cb0e9c218713ca1a0c980b9c65ff4710:/src/xbt/xbt_socket.c diff --git a/src/xbt/xbt_socket.c b/src/xbt/xbt_socket.c index 7587c141a8..fd4ad3f185 100644 --- a/src/xbt/xbt_socket.c +++ b/src/xbt/xbt_socket.c @@ -292,13 +292,13 @@ void xbt_socket_meas_send(xbt_socket_t peer, for (sent_sofar = 0; sent_sofar < msg_amount; sent_sofar++) { XBT_CDEBUG(xbt_trp_meas, - "Sent %lu msgs of %lu (size of each: %ld) to %s:%d", + "Sent %lu msgs of %lu (size of each: %lu) to %s:%d", sent_sofar, msg_amount, msg_size, xbt_socket_peer_name(peer), xbt_socket_peer_port(peer)); peer->plugin->raw_send(peer, chunk, msg_size); } XBT_CDEBUG(xbt_trp_meas, - "Sent %lu msgs of %lu (size of each: %ld) to %s:%d", sent_sofar, + "Sent %lu msgs of %lu (size of each: %lu) to %s:%d", sent_sofar, msg_amount, msg_size, xbt_socket_peer_name(peer), xbt_socket_peer_port(peer)); @@ -342,13 +342,13 @@ void xbt_socket_meas_recv(xbt_socket_t peer, for (got_sofar = 0; got_sofar < msg_amount; got_sofar++) { XBT_CDEBUG(xbt_trp_meas, - "Recvd %ld msgs of %lu (size of each: %ld) from %s:%d", + "Recvd %lu msgs of %lu (size of each: %lu) from %s:%d", got_sofar, msg_amount, msg_size, xbt_socket_peer_name(peer), xbt_socket_peer_port(peer)); (peer->plugin->raw_recv) (peer, chunk, msg_size); } XBT_CDEBUG(xbt_trp_meas, - "Recvd %ld msgs of %lu (size of each: %ld) from %s:%d", + "Recvd %lu msgs of %lu (size of each: %lu) from %s:%d", got_sofar, msg_amount, msg_size, xbt_socket_peer_name(peer), xbt_socket_peer_port(peer));