diff options
author | Mathias K <kesmtp@freenet.de> | 2011-12-16 07:48:39 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvindharboe@gmail.com> | 2012-01-04 17:56:46 +0000 |
commit | 16b6b5e7a86353dbc0c4823fe3d772c0faca7c1c (patch) | |
tree | 4950e26d07d60b16b3223e085227c583418c2ef8 /src/target/mips32.c | |
parent | 42cb62cf3b47b982d6444948b483f9c6ce32de05 (diff) | |
download | riscv-openocd-16b6b5e7a86353dbc0c4823fe3d772c0faca7c1c.zip riscv-openocd-16b6b5e7a86353dbc0c4823fe3d772c0faca7c1c.tar.gz riscv-openocd-16b6b5e7a86353dbc0c4823fe3d772c0faca7c1c.tar.bz2 |
Change return value on error.
On wrong parameters a error is signalized to the calling function.
Change-Id: I484443fdb39938e20382edc9246d5ec546a5c960
Signed-off-by: Mathias K <kesmtp@freenet.de>
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Reviewed-on: http://openocd.zylin.com/282
Tested-by: jenkins
Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
Diffstat (limited to 'src/target/mips32.c')
-rw-r--r-- | src/target/mips32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/mips32.c b/src/target/mips32.c index 80dfb19..d9d84b7 100644 --- a/src/target/mips32.c +++ b/src/target/mips32.c @@ -797,7 +797,7 @@ COMMAND_HANDLER(mips32_handle_cp0_command) /* two or more argument, access a single register/select (write if third argument is given) */ if (CMD_ARGC < 2) { - command_print(CMD_CTX, "command requires more arguments."); + return ERROR_COMMAND_SYNTAX_ERROR; } else { |