fix incorrect format string to allow compilation (nw)

This commit is contained in:
smf- 2019-08-15 11:41:01 +01:00
parent 292672f527
commit 2ff56cd342

View File

@ -61,7 +61,7 @@ int uniflex_format::find_size(io_generic *io, uint32_t form_factor)
uint16_t swap_size = pick_integer_be(sir, 0x3f, 2);
LOG_FORMATS("UniFLEX floppy dsk size %d\n", (uint32_t)size);
LOG_FORMATS(" time = %lu %lu\n", pick_integer_be(sir, 0x08, 4), pick_integer_be(sir, 0x0c, 4));
LOG_FORMATS(" time = %u %u\n", (uint32_t) pick_integer_be(sir, 0x08, 4), (uint32_t) pick_integer_be(sir, 0x0c, 4));
LOG_FORMATS(" fdn_block_count: %d\n", fdn_block_count);
LOG_FORMATS(" file system name: ");