From: Gabriel Corona Date: Tue, 24 May 2016 11:19:03 +0000 (+0200) Subject: [smx] Fix simcalls.py X-Git-Tag: v3_14~1170 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6ec42f8e4ef116e1d0a250e1491f3520a4d97e73?hp=e37929cd4f8349d37d59645a95be3ca7a01ed353 [smx] Fix simcalls.py --- diff --git a/src/simix/simcalls.py b/src/simix/simcalls.py index 46c7101f85..18c6dabc42 100755 --- a/src/simix/simcalls.py +++ b/src/simix/simcalls.py @@ -168,7 +168,7 @@ class Simcall(object): for i, arg in enumerate(self.args))) res.append(' if (self != simix_global->maestro_process) {') res.append( - ' XBT_DEBUG("Yield process \'%s\' on simcall %s (%d)", self->name,') + ' XBT_DEBUG("Yield process \'%s\' on simcall %s (%d)", self->name.c_str(),') res.append( ' SIMIX_simcall_name(self->simcall.call), (int)self->simcall.call);') res.append(' SIMIX_process_yield(self);')