summaryrefslogtreecommitdiff
path: root/src/target/xscale.c
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-08-25 12:19:44 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-08-25 12:19:44 +0000
commit7a1ac49ac921964f48e0bbd9e1bf0d151d99b17e (patch)
tree925b8f62bf72605cf9ebe76abc33cda1613af3a8 /src/target/xscale.c
parent8e1d516927506fb803f34aa16a6e69059f8d78cd (diff)
downloadopenocd+libswd-7a1ac49ac921964f48e0bbd9e1bf0d151d99b17e.tar.gz
openocd+libswd-7a1ac49ac921964f48e0bbd9e1bf0d151d99b17e.tar.bz2
openocd+libswd-7a1ac49ac921964f48e0bbd9e1bf0d151d99b17e.tar.xz
openocd+libswd-7a1ac49ac921964f48e0bbd9e1bf0d151d99b17e.zip
- fix build warnings
- add svn props to recently added files armv7a.[ch] git-svn-id: svn://svn.berlios.de/openocd/trunk@2618 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/xscale.c')
-rw-r--r--src/target/xscale.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/xscale.c b/src/target/xscale.c
index cc90eb31..40126c92 100644
--- a/src/target/xscale.c
+++ b/src/target/xscale.c
@@ -3406,10 +3406,10 @@ int xscale_handle_vector_table_command(command_context_t *cmd_ctx, char *cmd, ch
command_print(cmd_ctx, "active user-set static vectors:");
for (idx = 1; idx < 8; idx++)
if (xscale->static_low_vectors_set & (1 << idx))
- command_print(cmd_ctx, "low %d: 0x%x", idx, xscale->static_low_vectors[idx]);
+ command_print(cmd_ctx, "low %d: 0x%" PRIx32, idx, xscale->static_low_vectors[idx]);
for (idx = 1; idx < 8; idx++)
if (xscale->static_high_vectors_set & (1 << idx))
- command_print(cmd_ctx, "high %d: 0x%x", idx, xscale->static_high_vectors[idx]);
+ command_print(cmd_ctx, "high %d: 0x%" PRIx32, idx, xscale->static_high_vectors[idx]);
return ERROR_OK;
}