1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 12:55:19 +03:00

Whitespace tidy.

This commit is contained in:
Martin Budden 2016-01-21 10:41:02 +00:00 committed by borisbstyle
parent e52c597d0e
commit d545cbf620

View file

@ -82,7 +82,7 @@ STATIC_UNIT_TESTED bool queueContains(cfTask_t *task)
STATIC_UNIT_TESTED void queueAdd(cfTask_t *task)
{
if ((taskQueueSize >= TASK_COUNT -1) || queueContains(task)) {
if ((taskQueueSize >= TASK_COUNT - 1) || queueContains(task)) {
return;
}
for (int ii = 0; ii <= taskQueueSize; ++ii) {