summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-07-23 07:04:21 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-07-23 07:04:21 +0000
commitc7565cc38177c264306770c1b3714e8477053167 (patch)
treefa734d4b0d482c9c8d30a6dd8e16eeba23f11676 /src
parent30b1bbceea7183559eae342b6228d8723dc72f2d (diff)
downloadopenocd_libswd-c7565cc38177c264306770c1b3714e8477053167.tar.gz
openocd_libswd-c7565cc38177c264306770c1b3714e8477053167.tar.bz2
openocd_libswd-c7565cc38177c264306770c1b3714e8477053167.tar.xz
openocd_libswd-c7565cc38177c264306770c1b3714e8477053167.zip
Ferdinand Postema <ferdinand@postema.eu> fix cygwin warnings
git-svn-id: svn://svn.berlios.de/openocd/trunk@2559 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-rw-r--r--src/jtag/amt_jtagaccel.c2
-rw-r--r--src/jtag/bitbang.c2
-rw-r--r--src/target/arm_adi_v5.c8
3 files changed, 6 insertions, 6 deletions
diff --git a/src/jtag/amt_jtagaccel.c b/src/jtag/amt_jtagaccel.c
index c8fcc54f..b12aa763 100644
--- a/src/jtag/amt_jtagaccel.c
+++ b/src/jtag/amt_jtagaccel.c
@@ -374,7 +374,7 @@ static int amt_jtagaccel_execute_queue(void)
break;
case JTAG_SLEEP:
#ifdef _DEBUG_JTAG_IO_
- LOG_DEBUG("sleep %i", cmd->cmd.sleep->us);
+ LOG_DEBUG("sleep %" PRIi32, cmd->cmd.sleep->us);
#endif
jtag_sleep(cmd->cmd.sleep->us);
break;
diff --git a/src/jtag/bitbang.c b/src/jtag/bitbang.c
index 0be88b6f..96b4daf3 100644
--- a/src/jtag/bitbang.c
+++ b/src/jtag/bitbang.c
@@ -308,7 +308,7 @@ int bitbang_execute_queue(void)
break;
case JTAG_SLEEP:
#ifdef _DEBUG_JTAG_IO_
- LOG_DEBUG("sleep %i", cmd->cmd.sleep->us);
+ LOG_DEBUG("sleep %" PRIi32, cmd->cmd.sleep->us);
#endif
jtag_sleep(cmd->cmd.sleep->us);
break;
diff --git a/src/target/arm_adi_v5.c b/src/target/arm_adi_v5.c
index f1a50215..90423f4b 100644
--- a/src/target/arm_adi_v5.c
+++ b/src/target/arm_adi_v5.c
@@ -1144,7 +1144,7 @@ int dap_baseaddr_command(struct command_context_s *cmd_ctx,
dap_ap_read_reg_u32(swjdp, 0xF8, &baseaddr);
retval = swjdp_transaction_endcheck(swjdp);
- command_print(cmd_ctx, "0x%8.8x", baseaddr);
+ command_print(cmd_ctx, "0x%8.8" PRIx32, baseaddr);
if (apselsave != apsel)
dap_ap_select(swjdp, apselsave);
@@ -1162,7 +1162,7 @@ int dap_memaccess_command(struct command_context_s *cmd_ctx,
memaccess_tck = strtoul(args[0], NULL, 0);
swjdp->memaccess_tck = memaccess_tck;
- command_print(cmd_ctx, "memory bus access delay set to %i tck",
+ command_print(cmd_ctx, "memory bus access delay set to %" PRIi32 " tck",
swjdp->memaccess_tck);
return ERROR_OK;
@@ -1181,7 +1181,7 @@ int dap_apsel_command(struct command_context_s *cmd_ctx,
dap_ap_select(swjdp, apsel);
dap_ap_read_reg_u32(swjdp, 0xFC, &apid);
retval = swjdp_transaction_endcheck(swjdp);
- command_print(cmd_ctx, "ap %i selected, identification register 0x%8.8x",
+ command_print(cmd_ctx, "ap %" PRIi32 " selected, identification register 0x%8.8" PRIx32,
apsel, apid);
return retval;
@@ -1203,7 +1203,7 @@ int dap_apid_command(struct command_context_s *cmd_ctx,
dap_ap_read_reg_u32(swjdp, 0xFC, &apid);
retval = swjdp_transaction_endcheck(swjdp);
- command_print(cmd_ctx, "0x%8.8x", apid);
+ command_print(cmd_ctx, "0x%8.8" PRIx32, apid);
if (apselsave != apsel)
dap_ap_select(swjdp, apselsave);