mirror of https://github.com/ArduPilot/ardupilot
StorageManager: fixed build warning
This commit is contained in:
parent
930d22daf9
commit
7cff648f8a
|
@ -93,7 +93,7 @@ void loop(void)
|
|||
|
||||
count++;
|
||||
if (count % 10000 == 0) {
|
||||
hal.console->printf("%u ops\n", count);
|
||||
hal.console->printf("%u ops\n", (unsigned)count);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue