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

Compile warnings on unused cliVtx() fixed.

This commit is contained in:
Anders Hoglund 2017-03-09 19:28:46 +01:00
parent f1ce19167f
commit 2acdbecae3

View file

@ -3236,6 +3236,7 @@ static void printVtx(uint8_t dumpMask, const vtxConfig_t *vtxConfig, const vtxCo
}
}
#ifdef VTX
static void cliVtx(char *cmdline)
{
int i, val = 0;
@ -3283,6 +3284,7 @@ static void cliVtx(char *cmdline)
}
}
}
#endif // VTX
#endif
static void printName(uint8_t dumpMask)