- fixed typo in wp command

git-svn-id: svn://svn.berlios.de/openocd/trunk@692 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
ntfreak 2008-05-27 17:57:41 +00:00
parent 586e9e4ef1
commit 222b5c179a
1 changed files with 1 additions and 1 deletions

View File

@ -2404,7 +2404,7 @@ int handle_wp_command(struct command_context_s *cmd_ctx, char *cmd, char **args,
while (watchpoint)
{
command_print(cmd_ctx, "address: 0x%8.8x, mask: 0x%8.8x, r/w/a: %i, value: 0x%8.8x, mask: 0x%8.8x", watchpoint->address, watchpoint->length, watchpoint->rw, watchpoint->value, watchpoint->mask);
command_print(cmd_ctx, "address: 0x%8.8x, len: 0x%8.8x, r/w/a: %i, value: 0x%8.8x, mask: 0x%8.8x", watchpoint->address, watchpoint->length, watchpoint->rw, watchpoint->value, watchpoint->mask);
watchpoint = watchpoint->next;
}
}