Skip to content

Commit

Permalink
fix: Fix mismatching format strings when writing
Browse files Browse the repository at this point in the history
We were using the incorrect format string - this commit fixes that.

Signed-off-by: Dom Rodriguez <[email protected]>
  • Loading branch information
shymega authored and gamelaster committed Dec 2, 2024
1 parent d63612c commit d51e7bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/blisp/src/cmd/write.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,13 +233,13 @@ blisp_return_t blisp_flash_firmware() {

if (ret != BLISP_OK) {
fprintf(stderr,
"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",
parsed_file.payload_address,
parsed_file.payload_address + parsed_file.payload_length + 1);
goto exit2;
}

printf("Flashing the firmware %d bytes @ 0x%08X...\n",
printf("Flashing the firmware %lu bytes @ 0x%08lu...\n",
parsed_file.payload_length, parsed_file.payload_address);
struct blisp_easy_transport data_transport =
blisp_easy_transport_new_from_memory(parsed_file.payload,
Expand Down

0 comments on commit d51e7bc

Please sign in to comment.