From 568abe14c697e195ea0443db97394979a74c36a0 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Tue, 27 Jun 2017 22:57:06 +0200 Subject: [PATCH] cosmetics --- src/simix/smx_synchro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simix/smx_synchro.cpp b/src/simix/smx_synchro.cpp index c4d9731312..6f5395883f 100644 --- a/src/simix/smx_synchro.cpp +++ b/src/simix/smx_synchro.cpp @@ -170,7 +170,7 @@ void MutexImpl::unlock(smx_actor_t issuer) /* If the mutex is not owned by the issuer, that's not good */ if (issuer != this->owner) THROWF(mismatch_error, 0, "Cannot release that mutex: it was locked by %s (pid:%ld), not by you.", - this->owner->name.c_str(),this->owner->pid); + this->owner->cname(), this->owner->pid); if (xbt_swag_size(this->sleeping) > 0) { /*process to wake up */ -- 2.20.1