]> git.sur5r.net Git - openocd/blobdiff - src/target/target.c
- fixed typo in wp command
[openocd] / src / target / target.c
index 5b0457f5a65ed03801627e54ae1bf5314a1c957f..8c479189ee64a32513f3552ac97fd902c9931603 100644 (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;
                }
        }