From: Christian Heinrich Date: Fri, 9 Oct 2015 09:57:02 +0000 (+0200) Subject: [SMPI] Fixed output alignment for display_timing option X-Git-Tag: v3_12~10^2~19 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/26c50cfea1e8e3349786ca38764e4db37d4864bc?hp=0fbb2ce49d807800629638bb182ef8cc159a77bf [SMPI] Fixed output alignment for display_timing option --- diff --git a/src/smpi/smpi_global.c b/src/smpi/smpi_global.c index 61a34379b5..263b191439 100644 --- a/src/smpi/smpi_global.c +++ b/src/smpi/smpi_global.c @@ -676,7 +676,7 @@ int smpi_main(int (*realmain) (int argc, char *argv[]), int argc, char *argv[]) xbt_os_walltimer_stop(global_timer); if (sg_cfg_get_boolean("smpi/display_timing")){ double global_time = xbt_os_timer_elapsed(global_timer); - XBT_INFO("Simulated time: %g seconds. \n " + XBT_INFO("Simulated time: %g seconds. \n\n" "The simulation took %g seconds (after parsing and platform setup)\n" "%g seconds were actual computation of the application" , SIMIX_get_clock(), global_time , smpi_total_benched_time);