crc32: Fix the launchpad-icdi build as that was broken

This commit is contained in:
dragonmux 2022-01-21 22:55:56 -05:00 committed by Piotr Esden-Tempski
parent 3bb8c2bf19
commit c30e165c1c
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ int generic_crc32(target *t, uint32_t *crc_res, uint32_t base, size_t len)
base += read_len;
len -= read_len;
}
DEBUG_WARN("%d ms\n", platform_time_ms() - start_time);
DEBUG_WARN("%" PRIu32 " ms\n", platform_time_ms() - start_time);
*crc_res = crc;
return 0;
}