From: David B. <dbr...@us...> - 2009-11-14 11:22:53
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via ab3bdfb2cb7b0c16800195951e4ee549cf8e86a5 (commit) from ecab0cfe25600ad13c174b78a637515943cc870a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ab3bdfb2cb7b0c16800195951e4ee549cf8e86a5 Author: Ferdinand Postema <fer...@po...> Date: Thu Nov 12 23:21:33 2009 +0100 compile with cygwin (32-bit) Changed some printf format strings.. [dbr...@us...: shrink lines, fix indents] Signed-off-by: David Brownell <dbr...@us...> diff --git a/src/jtag/ft2232.c b/src/jtag/ft2232.c index 7d7a538..cee55e0 100644 --- a/src/jtag/ft2232.c +++ b/src/jtag/ft2232.c @@ -1713,13 +1713,13 @@ static int ft2232_execute_sleep(struct jtag_command *cmd) int retval; retval = ERROR_OK; - DEBUG_JTAG_IO("sleep %i", cmd->cmd.sleep->us); + DEBUG_JTAG_IO("sleep %" PRIi32, cmd->cmd.sleep->us); if (ft2232_send_and_recv(first_unsent, cmd) != ERROR_OK) retval = ERROR_JTAG_QUEUE_FAILED; first_unsent = cmd->next; jtag_sleep(cmd->cmd.sleep->us); - DEBUG_JTAG_IO("sleep %i usec while in %s", + DEBUG_JTAG_IO("sleep %" PRIi32 " usec while in %s", cmd->cmd.sleep->us, tap_state_name(tap_get_state())); return retval; diff --git a/src/target/arm966e.c b/src/target/arm966e.c index 931db74..b3d8e15 100644 --- a/src/target/arm966e.c +++ b/src/target/arm966e.c @@ -189,7 +189,9 @@ COMMAND_HANDLER(arm966e_handle_cp15_command) uint32_t value; if ((retval = arm966e_read_cp15(target, address, &value)) != ERROR_OK) { - command_print(cmd_ctx, "couldn't access reg %i", address); + command_print(cmd_ctx, + "couldn't access reg %" PRIi32, + address); return ERROR_OK; } if ((retval = jtag_execute_queue()) != ERROR_OK) @@ -197,7 +199,8 @@ COMMAND_HANDLER(arm966e_handle_cp15_command) return retval; } - command_print(cmd_ctx, "%i: %8.8" PRIx32 "", address, value); + command_print(cmd_ctx, "%" PRIi32 ": %8.8" PRIx32, + address, value); } else if (argc == 2) { @@ -205,10 +208,13 @@ COMMAND_HANDLER(arm966e_handle_cp15_command) COMMAND_PARSE_NUMBER(u32, args[1], value); if ((retval = arm966e_write_cp15(target, address, value)) != ERROR_OK) { - command_print(cmd_ctx, "couldn't access reg %i", address); + command_print(cmd_ctx, + "couldn't access reg %" PRIi32, + address); return ERROR_OK; } - command_print(cmd_ctx, "%i: %8.8" PRIx32 "", address, value); + command_print(cmd_ctx, "%" PRIi32 ": %8.8" PRIx32, + address, value); } } diff --git a/src/target/breakpoints.c b/src/target/breakpoints.c index f2b6ff7..f657ddc 100644 --- a/src/target/breakpoints.c +++ b/src/target/breakpoints.c @@ -235,11 +235,12 @@ bye: return retval; } - LOG_DEBUG("added %s watchpoint at 0x%8.8" PRIx32 " of length 0x%8.8x (WPID: %d)", - watchpoint_rw_strings[(*watchpoint_p)->rw], - (*watchpoint_p)->address, - (*watchpoint_p)->length, - (*watchpoint_p)->unique_id ); + LOG_DEBUG("added %s watchpoint at 0x%8.8" PRIx32 + " of length 0x%8.8" PRIx32 " (WPID: %d)", + watchpoint_rw_strings[(*watchpoint_p)->rw], + (*watchpoint_p)->address, + (*watchpoint_p)->length, + (*watchpoint_p)->unique_id ); return ERROR_OK; } diff --git a/src/target/target.c b/src/target/target.c index 85c228a..cc8d500 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -2801,13 +2801,15 @@ COMMAND_HANDLER(handle_wp_command) while (watchpoint) { - command_print(cmd_ctx, - "address: 0x%8.8" PRIx32 ", len: 0x%8.8x, r/w/a: %i, value: 0x%8.8" PRIx32 ", mask: 0x%8.8" PRIx32 "", - watchpoint->address, - watchpoint->length, - (int)(watchpoint->rw), - watchpoint->value, - watchpoint->mask); + command_print(cmd_ctx, "address: 0x%8.8" PRIx32 + ", len: 0x%8.8" PRIx32 + ", r/w/a: %i, value: 0x%8.8" PRIx32 + ", mask: 0x%8.8" PRIx32, + watchpoint->address, + watchpoint->length, + (int)watchpoint->rw, + watchpoint->value, + watchpoint->mask); watchpoint = watchpoint->next; } return ERROR_OK; ----------------------------------------------------------------------- Summary of changes: src/jtag/ft2232.c | 4 ++-- src/target/arm966e.c | 14 ++++++++++---- src/target/breakpoints.c | 11 ++++++----- src/target/target.c | 16 +++++++++------- 4 files changed, 27 insertions(+), 18 deletions(-) hooks/post-receive -- Main OpenOCD repository |