From 26c50cfea1e8e3349786ca38764e4db37d4864bc Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Fri, 9 Oct 2015 11:57:02 +0200 Subject: [PATCH] [SMPI] Fixed output alignment for display_timing option --- src/smpi/smpi_global.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.20.1