StorageManager: fixed build warning

This commit is contained in:
Andrew Tridgell 2018-05-04 11:41:16 +10:00
parent 930d22daf9
commit 7cff648f8a
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}