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

Fix compiler warning regarding failsafeIndicator

This commit is contained in:
Dominic Clifton 2015-04-19 13:24:45 +01:00
parent fbc3a8e1eb
commit 581b0cd897
2 changed files with 4 additions and 4 deletions

View file

@ -212,7 +212,7 @@ void updateRxStatus(void)
void updateFailsafeStatus(void)
{
char failsafeIndicator;
char failsafeIndicator = '?';
switch (failsafePhase()) {
case FAILSAFE_IDLE:
failsafeIndicator = '-';