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 5f0223423d6c9a41bf0a9ac45772d1b01469bf0a (commit)
from 30f6142fc8570549ff42676ffe16425c6a6ef264 (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 5f0223423d6c9a41bf0a9ac45772d1b01469bf0a
Author: David Brownell <dbr...@us...>
Date: Sat Nov 28 11:55:00 2009 -0800
ARM11: fix warning on amd64
Previous version of JTAG_DEBUG() macro hid this bug.
Signed-off-by: David Brownell <dbr...@us...>
diff --git a/src/target/arm11_dbgtap.c b/src/target/arm11_dbgtap.c
index 9e43895..ed57d20 100644
--- a/src/target/arm11_dbgtap.c
+++ b/src/target/arm11_dbgtap.c
@@ -871,7 +871,10 @@ int arm11_sc7_run(struct arm11_common * arm11, struct arm11_sc7_action * actions
for (size_t i = 0; i < count; i++)
{
- JTAG_DEBUG("SC7 %02d: %02x %s %08x", i, actions[i].address, actions[i].write ? "<=" : "=>", actions[i].value);
+ JTAG_DEBUG("SC7 %02d: %02x %s %08x",
+ (unsigned) i, actions[i].address,
+ actions[i].write ? "<=" : "=>",
+ actions[i].value);
}
return ERROR_OK;
-----------------------------------------------------------------------
Summary of changes:
src/target/arm11_dbgtap.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
hooks/post-receive
--
Main OpenOCD repository
|