Fix printing of contiguous_erase_size

pull/13848/head
Lingkai Dong 2020-11-06 11:53:28 +00:00
parent c61445a787
commit 9f3ada3131
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ void test_contiguous_erase_write_read()
bd_size_t contiguous_erase_size = stop_address - start_address;
TEST_ASSERT(contiguous_erase_size > 0);
utest_printf("contiguous_erase_size=%d\n", contiguous_erase_size);
utest_printf("contiguous_erase_size=0x%" PRIx64 "\n", contiguous_erase_size);
bd_size_t write_read_buf_size = program_size;
if (contiguous_erase_size / program_size > 8 && contiguous_erase_size % (program_size * 8) == 0) {