summaryrefslogtreecommitdiff
path: root/src/flash/flash.c
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-10-10 11:32:39 -0700
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-10-10 11:32:39 -0700
commita0b1e05b5300817e1fe2bc4dae31601d02cfd815 (patch)
tree952b568e3f9d0e5020101f90766c1ff41d009b57 /src/flash/flash.c
parent456ec367952587ab24b204b233b669a6e33b8af6 (diff)
downloadopenocd+libswd-a0b1e05b5300817e1fe2bc4dae31601d02cfd815.tar.gz
openocd+libswd-a0b1e05b5300817e1fe2bc4dae31601d02cfd815.tar.bz2
openocd+libswd-a0b1e05b5300817e1fe2bc4dae31601d02cfd815.tar.xz
openocd+libswd-a0b1e05b5300817e1fe2bc4dae31601d02cfd815.zip
printf format warning fixes
Observed on a Cygwin build. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/flash/flash.c')
-rw-r--r--src/flash/flash.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/flash/flash.c b/src/flash/flash.c
index 4c123f8f..d1b023c5 100644
--- a/src/flash/flash.c
+++ b/src/flash/flash.c
@@ -569,8 +569,8 @@ static int flash_check_sector_parameters(struct command_context_s *cmd_ctx,
}
if (!(last <= (num_sectors - 1))) {
- command_print(cmd_ctx, "ERROR: "
- "last sector must be <= %d", num_sectors - 1);
+ command_print(cmd_ctx, "ERROR: last sector must be <= %d",
+ (int) num_sectors - 1);
return ERROR_FAIL;
}
@@ -616,7 +616,8 @@ static int handle_flash_erase_command(struct command_context_s *cmd_ctx,
return retval;
command_print(cmd_ctx, "erased sectors %i through %i "
"on flash bank %i in %s",
- first, last, bank_nr, duration_text);
+ (int) first, (int) last, (int) bank_nr,
+ duration_text);
free(duration_text);
}
}
@@ -667,8 +668,8 @@ static int handle_flash_protect_command(struct command_context_s *cmd_ctx,
if (retval == ERROR_OK) {
command_print(cmd_ctx, "%s protection for sectors %i "
"through %i on flash bank %i",
- (set) ? "set" : "cleared", first,
- last, bank_nr);
+ (set) ? "set" : "cleared", (int) first,
+ (int) last, (int) bank_nr);
}
}
else