1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

Fix beeper dump output bug

This commit is contained in:
KiteAnton 2016-03-12 10:30:26 +01:00
parent 3df01ac21d
commit ee57ba387a

View file

@ -1901,7 +1901,7 @@ static void cliDump(char *cmdline)
if (mask & (1 << i)) if (mask & (1 << i))
cliPrintf("beeper -%s\r\n", beeperNameForTableIndex(i)); cliPrintf("beeper -%s\r\n", beeperNameForTableIndex(i));
else else
cliPrintf("beeper %s\r\n", beeperNameForTableIndex(i)); cliPrintf("beeper %s\r\n", beeperNameForTableIndex(i));
} }
#endif #endif