TaskIF refactoring continued #91

Merged
meierj merged 16 commits from mueller/task-if-refactoring-eive into develop 2022-05-25 16:11:23 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit af7c6c57a3 - Show all commits

View File

@ -67,7 +67,7 @@ inline ReturnValue_t Service11TelecommandScheduling<MAX_NUM_TCS>::performService
// NOTE: The iterator is increased in the loop here. Increasing the iterator as for-loop arg
// does not work in this case as we are deleting the current element here.
for (auto it = telecommandMap.begin(); it != telecommandMap.end();) {
if (it->first <= tNow.tv_sec) {
if (it->first <= static_cast<uint32_t>(tNow.tv_sec)) {
// release tc
TmTcMessage releaseMsg(it->second.storeAddr);
auto sendRet = this->requestQueue->sendMessage(recipientMsgQueueId, &releaseMsg, false);