From: Arnaud Giersch Date: Sun, 19 Nov 2017 17:03:49 +0000 (+0100) Subject: Fix 32bits builds. X-Git-Tag: v3.18~242^2~10 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/eaabadf919a4dca26d75a3098dba6fb985dbe82b?hp=0e7d247670cc012d8e784d0c8bcbb70a1c0bb9c6 Fix 32bits builds. --- diff --git a/src/mc/mc_global.cpp b/src/mc/mc_global.cpp index 06f1981d42..b14329839c 100644 --- a/src/mc/mc_global.cpp +++ b/src/mc/mc_global.cpp @@ -148,7 +148,7 @@ void dumpStack(FILE* file, unw_cursor_t cursor) fprintf(file, " %i: %s (RIP=0x%" PRIx64 " RSP=0x%" PRIx64 ")\n", nframe, realname.get(), (std::uint64_t)rip, (std::uint64_t)rsp); #else - fprintf(file, " %i: %s\n", nframe, realname ? realname : name); + fprintf(file, " %i: %s\n", nframe, realname.get()); #endif ++nframe;