From 7871ee7ca810bc49380b3362b3d0c9e1c0e49e0d Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Mon, 15 Jun 2020 17:39:52 +0200 Subject: [PATCH] mutex helper little formatting correction --- ipc/MutexHelper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc/MutexHelper.h b/ipc/MutexHelper.h index 20760b32..c9579e9b 100644 --- a/ipc/MutexHelper.h +++ b/ipc/MutexHelper.h @@ -10,7 +10,7 @@ public: internalMutex(mutex) { ReturnValue_t status = mutex->lockMutex(timeoutMs); if(status == MutexIF::MUTEX_TIMEOUT) { - sif::error << "MutexHelper: Lock of mutex failed with timeout of" + sif::error << "MutexHelper: Lock of mutex failed with timeout of " << timeoutMs << " milliseconds!" << std::endl; } else if(status != HasReturnvaluesIF::RETURN_OK){