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

Remove incorrect compiler warning about unused variable.

This commit is contained in:
Dominic Clifton 2014-04-21 03:05:46 +01:00
parent 007bc58859
commit ca73413c72

View file

@ -113,7 +113,7 @@ void copyCurrentProfileToProfileSlot(uint8_t profileSlotIndex)
void writeEEPROM(void)
{
FLASH_Status status;
FLASH_Status status = 0;
uint32_t wordOffset;
int8_t attemptsRemaining = 3;