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 d63612c commit d51e7bcCopy full SHA for d51e7bc
tools/blisp/src/cmd/write.c
@@ -233,13 +233,13 @@ blisp_return_t blisp_flash_firmware() {
233
234
if (ret != BLISP_OK) {
235
fprintf(stderr,
236
- "Failed to erase flash. Tried to erase from 0x%08X to 0x%08X\n",
+ "Failed to erase flash. Tried to erase from 0x%08lu to 0x%08lu\n",
237
parsed_file.payload_address,
238
parsed_file.payload_address + parsed_file.payload_length + 1);
239
goto exit2;
240
}
241
242
- printf("Flashing the firmware %d bytes @ 0x%08X...\n",
+ printf("Flashing the firmware %lu bytes @ 0x%08lu...\n",
243
parsed_file.payload_length, parsed_file.payload_address);
244
struct blisp_easy_transport data_transport =
245
blisp_easy_transport_new_from_memory(parsed_file.payload,
0 commit comments