X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/37d0fdaa9ea99528889ee493a9f1e580d71397e0..5d449744bf13fe169eaee166e0cba7453d410b0d:/examples/amok/saturate/saturate.c diff --git a/examples/amok/saturate/saturate.c b/examples/amok/saturate/saturate.c index 909b132086..4f3a802be7 100644 --- a/examples/amok/saturate/saturate.c +++ b/examples/amok/saturate/saturate.c @@ -199,7 +199,7 @@ static void full_fledged_saturation(int argc, char*argv[]) { bw=amok_bw_matrix(peers,buf_size,msg_size,msg_amount,min_duration); INFO2("Did all BW tests in %ld sec (%.2f simulated(?) sec)", - time(NULL)-begin,gras_os_time()-begin_simulated); + (long int) (time(NULL)-begin),gras_os_time()-begin_simulated); /* Do the test with saturation */ bw_sat=xbt_new(double,nb_peers*nb_peers); @@ -243,7 +243,7 @@ static void full_fledged_saturation(int argc, char*argv[]) { amok_bw_saturate_stop(h1->name,h1->port,&time1,&bw1); INFO2("Did an iteration on saturation pair in %ld sec (%.2f simulated sec)", - time(NULL)-begin, gras_os_time()-begin_simulated); + (long int) (time(NULL)-begin), gras_os_time()-begin_simulated); INFO2("the duration of the experiment >>>>> %.3f sec (%.3f bandwidth)",time1,bw1); } }