From: Antonio Borneo Date: Thu, 22 Jan 2015 15:12:46 +0000 (+0800) Subject: target: fix 'bp' command help message X-Git-Tag: v0.11.0-rc1~1079 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=d04254196e383965627d4eab805f9b1b93240e69 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 Reviewed-on: http://openocd.zylin.com/4511 Tested-by: jenkins Reviewed-by: Christopher Head Reviewed-by: Tomas Vanek --- diff --git a/src/target/target.c b/src/target/target.c index 7ab13b0204..1ca6c8e53c 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -6415,7 +6415,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 = "
[] ['hw'|'hw_ctx']", + .usage = "
[] ['hw'|'hw_ctx']", }, { .name = "rbp",