X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/07ce716b44d53a070fc2358ec727bb1975198200..db7a8812e4f680703698ef3c800504863f6a88d8:/src/xbt/xbt_log_layout_format.c diff --git a/src/xbt/xbt_log_layout_format.c b/src/xbt/xbt_log_layout_format.c index 16c1c21677..ceb01d926d 100644 --- a/src/xbt/xbt_log_layout_format.c +++ b/src/xbt/xbt_log_layout_format.c @@ -186,8 +186,6 @@ static void xbt_log_layout_format_doit(xbt_log_layout_t l, char *p, *q; int precision = -1; - if (format_begin_of_time < 0) - format_begin_of_time = gras_os_time(); p = ev->buffer; q = l->data; @@ -498,5 +496,9 @@ xbt_log_layout_t xbt_log_layout_format_new(char *arg) res->do_layout = xbt_log_layout_format_doit; res->free_ = xbt_log_layout_format_free; res->data = xbt_strdup((char *) arg); + + if (format_begin_of_time < 0) + format_begin_of_time = gras_os_time(); + return res; }