|
From: <ge...@op...> - 2018-04-30 12:15:26
|
This is an automated email from Gerrit. Antonio Borneo (bor...@gm...) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/4511 -- gerrit commit 2da181a7c4d416bdbf91635c6f7032fe8fb39c8a Author: Antonio Borneo <bor...@gm...> Date: Thu Jan 22 23:12:46 2015 +0800 target: fix 'bp' command help message "asid" and "length" are separate arguments of the command. Put space between them. Change-Id: I36cfc1e3a01caafef4fc3b26972a0cc192b0b963 Signed-off-by: Antonio Borneo <bor...@gm...> diff --git a/src/target/target.c b/src/target/target.c index 75555c1..3504314 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -6414,7 +6414,7 @@ static const struct command_registration target_exec_command_handlers[] = { .handler = handle_bp_command, .mode = COMMAND_EXEC, .help = "list or set hardware or software breakpoint", - .usage = "<address> [<asid>]<length> ['hw'|'hw_ctx']", + .usage = "<address> [<asid>] <length> ['hw'|'hw_ctx']", }, { .name = "rbp", -- |