mutex helper little formatting correction

This commit is contained in:
Robin Müller 2020-06-15 17:39:52 +02:00
parent e39d5689e5
commit 7871ee7ca8
1 changed files with 1 additions and 1 deletions

View File

@ -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){