1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 12:25:20 +03:00

Whitespace cleanup

This commit is contained in:
Bryce Johnson 2017-09-24 22:10:12 -05:00
parent d1a197f99e
commit aeb9399722

View file

@ -116,8 +116,9 @@ throttleStatus_e calculateThrottleStatus(void)
return THROTTLE_LOW; return THROTTLE_LOW;
} }
} else { } else {
if (rcData[THROTTLE] < rxConfig()->mincheck) if (rcData[THROTTLE] < rxConfig()->mincheck) {
return THROTTLE_LOW; return THROTTLE_LOW;
}
} }
return THROTTLE_HIGH; return THROTTLE_HIGH;