X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/663f424beab193b084453ba397102844dcd5ed64..87bf71ddfe2611ffedaabe6c3a9030957ae4a080:/src/xbt/xbt_log_layout_simple.c diff --git a/src/xbt/xbt_log_layout_simple.c b/src/xbt/xbt_log_layout_simple.c index 277ea18e6c..539469982d 100644 --- a/src/xbt/xbt_log_layout_simple.c +++ b/src/xbt/xbt_log_layout_simple.c @@ -73,7 +73,7 @@ static void xbt_log_layout_simple_doit(xbt_log_layout_t l, xbt_log_appender_t app) { char *p; - + const char *procname=NULL; xbt_assert0(ev->priority >= 0, "Negative logging priority naturally forbidden"); xbt_assert1(ev->priority < sizeof(xbt_log_priority_names), @@ -85,7 +85,7 @@ static void xbt_log_layout_simple_doit(xbt_log_layout_t l, check_overflow; /* Display the proc info if available */ - const char *procname=xbt_procname(); + procname=xbt_procname(); if (strlen(procname)) { p += snprintf(p, XBT_LOG_BUFF_SIZE - (p - ev->buffer), "%s:%s:(%d) ", gras_os_myname(), procname, (*xbt_getpid) ());