diff --git a/tools/blisp/src/cmd/write.c b/tools/blisp/src/cmd/write.c index d28f48a..fde093f 100644 --- a/tools/blisp/src/cmd/write.c +++ b/tools/blisp/src/cmd/write.c @@ -237,13 +237,13 @@ blisp_return_t blisp_flash_firmware() { if (ret != BLISP_OK) { fprintf(stderr, - "Failed to erase flash. Tried to erase from 0x%08lu to 0x%08lu\n", + "Failed to erase flash. Tried to erase from 0x%08zx to 0x%08zx\n", parsed_file.payload_address, parsed_file.payload_address + parsed_file.payload_length + 1); goto exit2; } - printf("Flashing the firmware %lu bytes @ 0x%08lu...\n", + printf("Flashing the firmware %zu bytes @ 0x%08zx...\n", parsed_file.payload_length, parsed_file.payload_address); struct blisp_easy_transport data_transport = blisp_easy_transport_new_from_memory(parsed_file.payload,