From ec76f2d7b7da2edd64f97b920c1ca9795826e82f Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Thu, 18 Jan 2018 17:02:33 +0100 Subject: [PATCH] [SMPI] Fix errors on SUSE: ActorPtr cannot be printed, use process_.get() --- src/smpi/internals/smpi_process.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.20.1