From 5d449744bf13fe169eaee166e0cba7453d410b0d Mon Sep 17 00:00:00 2001 From: mquinson Date: Fri, 7 Mar 2008 21:10:41 +0000 Subject: [PATCH] Right. time_t is not long int on AIX. ahah. Very funny. Ok, I've found worse than windows to play with git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5282 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- examples/amok/saturate/saturate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } -- 2.20.1