Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
card10
openocd
Commits
222b5c17
Commit
222b5c17
authored
May 27, 2008
by
ntfreak
Browse files
- fixed typo in wp command
git-svn-id:
svn://svn.berlios.de/openocd/trunk@692
b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent
586e9e4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/target/target.c
View file @
222b5c17
...
...
@@ -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
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment