diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-10-10 11:32:39 -0700 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-10-10 11:32:39 -0700 |
commit | a0b1e05b5300817e1fe2bc4dae31601d02cfd815 (patch) | |
tree | 952b568e3f9d0e5020101f90766c1ff41d009b57 /src/flash/mx3_nand.c | |
parent | 456ec367952587ab24b204b233b669a6e33b8af6 (diff) | |
download | openocd_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/mx3_nand.c')
-rw-r--r-- | src/flash/mx3_nand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/mx3_nand.c b/src/flash/mx3_nand.c index 20ab91e8..a5df0033 100644 --- a/src/flash/mx3_nand.c +++ b/src/flash/mx3_nand.c @@ -40,9 +40,9 @@ get_next_halfword_from_sram_buffer() not tested static const char target_not_halted_err_msg[] = "target must be halted to use mx3 NAND flash controller"; static const char data_block_size_err_msg[] = - "minimal granularity is one half-word, %d is incorrect"; + "minimal granularity is one half-word, %" PRId32 " is incorrect"; static const char sram_buffer_bounds_err_msg[] = - "trying to access out of SRAM buffer bound (addr=0x%x)"; + "trying to access out of SRAM buffer bound (addr=0x%" PRIx32 ")"; static const char get_status_register_err_msg[] = "can't get NAND status"; static uint32_t in_sram_address; unsigned char sign_of_sequental_byte_read; |