1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-20 06:45:16 +03:00

Minor makefile change to support windows better

Removed uninitialised warnings
This commit is contained in:
blckmn 2017-07-02 06:55:14 +10:00
parent 43c46d3845
commit 67d2c3ef25
6 changed files with 9 additions and 11 deletions

View file

@ -1164,7 +1164,7 @@ static void cliRxRange(char *cmdline)
ptr = cmdline;
i = atoi(ptr);
if (i >= 0 && i < NON_AUX_CHANNEL_COUNT) {
int rangeMin, rangeMax;
int rangeMin = 0, rangeMax = 0;
ptr = nextArg(ptr);
if (ptr) {