We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20270e5 commit cb89bdbCopy full SHA for cb89bdb
tools/blisp/src/cmd/write.c
@@ -237,13 +237,13 @@ blisp_return_t blisp_flash_firmware() {
237
238
if (ret != BLISP_OK) {
239
fprintf(stderr,
240
- "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",
241
parsed_file.payload_address,
242
parsed_file.payload_address + parsed_file.payload_length + 1);
243
goto exit2;
244
}
245
246
- printf("Flashing the firmware %lu bytes @ 0x%08lu...\n",
+ printf("Flashing the firmware %zu bytes @ 0x%08zx...\n",
247
parsed_file.payload_length, parsed_file.payload_address);
248
struct blisp_easy_transport data_transport =
249
blisp_easy_transport_new_from_memory(parsed_file.payload,
0 commit comments