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:
committed by
David Brownell
parent
ecab0cfe25
commit
ab3bdfb2cb
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user