From d04254196e383965627d4eab805f9b1b93240e69 Mon Sep 17 00:00:00 2001 From: Antonio Borneo Date: Thu, 22 Jan 2015 23:12:46 +0800 Subject: [PATCH] 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 --- src/target/target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", -- 2.30.2