1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-13 11:29:56 +03:00

Merge pull request #8556 from JulioCesarMatias/RemoveDuplication

[scheduler.c] Remove duplication
This commit is contained in:
Paweł Spychalski 2022-11-14 08:16:07 +01:00 committed by GitHub
commit 9ee63e99a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -198,7 +198,6 @@ void schedulerResetTaskStatistics(cfTaskId_e taskId)
} else if (taskId < TASK_COUNT) {
cfTasks[taskId].movingSumExecutionTime = 0;
cfTasks[taskId].totalExecutionTime = 0;
cfTasks[taskId].totalExecutionTime = 0;
}
}