summaryrefslogtreecommitdiff
path: root/src/target/breakpoints.c
diff options
context:
space:
mode:
authorFerdinand Postema <ferdinand@postema.eu>2009-11-12 23:21:33 +0100
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-11-14 02:22:37 -0800
commitab3bdfb2cb7b0c16800195951e4ee549cf8e86a5 (patch)
treeab397749d554bc7f9a9ab05d692d92f0d9aeffd2 /src/target/breakpoints.c
parentecab0cfe25600ad13c174b78a637515943cc870a (diff)
downloadopenocd+libswd-ab3bdfb2cb7b0c16800195951e4ee549cf8e86a5.tar.gz
openocd+libswd-ab3bdfb2cb7b0c16800195951e4ee549cf8e86a5.tar.bz2
openocd+libswd-ab3bdfb2cb7b0c16800195951e4ee549cf8e86a5.tar.xz
openocd+libswd-ab3bdfb2cb7b0c16800195951e4ee549cf8e86a5.zip
compile with cygwin (32-bit)
Changed some printf format strings.. [dbrownell@users.sourceforge.net: shrink lines, fix indents] Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/breakpoints.c')
-rw-r--r--src/target/breakpoints.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/target/breakpoints.c b/src/target/breakpoints.c
index f2b6ff78..f657ddce 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;
}