1
0
forked from fsfw/fsfw

some minor form corrections

This commit is contained in:
2020-05-29 14:03:39 +02:00
parent 8f563b7b21
commit 2eba865564
2 changed files with 9 additions and 2 deletions

View File

@ -10,11 +10,11 @@ public:
internalMutex(mutex) {
ReturnValue_t status = mutex->lockMutex(timeoutMs);
if(status != HasReturnvaluesIF::RETURN_OK){
sif::error << "MutexHelper: Lock of Mutex failed " << status << std::endl;
sif::error << "MutexHelper: Lock of Mutex failed " <<
status << std::endl;
}
}
~MutexHelper() {
internalMutex->unlockMutex();
}