From: Christian Heinrich Date: Thu, 18 Jan 2018 16:02:33 +0000 (+0100) Subject: [SMPI] Fix errors on SUSE: ActorPtr cannot be printed, use process_.get() X-Git-Tag: v3.19~312^2~9 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ec76f2d7b7da2edd64f97b920c1ca9795826e82f?ds=sidebyside [SMPI] Fix errors on SUSE: ActorPtr cannot be printed, use process_.get() --- diff --git a/src/smpi/internals/smpi_process.cpp b/src/smpi/internals/smpi_process.cpp index 17b38122c3..29ac6f4a63 100644 --- a/src/smpi/internals/smpi_process.cpp +++ b/src/smpi/internals/smpi_process.cpp @@ -76,7 +76,7 @@ void Process::set_data(int* argc, char*** argv) argv_ = argv; // set the process attached to the mailbox mailbox_small_->setReceiver(process_); - XBT_DEBUG("<%lu> New process in the game: %p", process_->getPid(), process_); + XBT_DEBUG("<%lu> New process in the game: %p", process_->getPid(), process_.get()); } /** @brief Prepares the current process for termination. */