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>
This commit is contained in:
Ferdinand Postema
2009-11-12 23:21:33 +01:00
committed by David Brownell
parent ecab0cfe25
commit ab3bdfb2cb
4 changed files with 27 additions and 18 deletions

View File

@@ -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;