diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-15 04:57:12 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-17 11:38:06 -0800 |
commit | 7bf1a86e473a12882bf6f71cb4d0d416394b69d4 (patch) | |
tree | 2c9c1d2138df704ac551cdafe105dbb68b8f23b8 /src/target/target_request.c | |
parent | 5b9899d6ea1e0cf763465c64c700f20eddd893f9 (diff) | |
download | riscv-openocd-7bf1a86e473a12882bf6f71cb4d0d416394b69d4.zip riscv-openocd-7bf1a86e473a12882bf6f71cb4d0d416394b69d4.tar.gz riscv-openocd-7bf1a86e473a12882bf6f71cb4d0d416394b69d4.tar.bz2 |
command_handler: change to 'argc' to CMD_ARGC
This patch converts all instances of 'argc' in COMMAND_HANDLER routines
to use CMD_ARGC.
Diffstat (limited to 'src/target/target_request.c')
-rw-r--r-- | src/target/target_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/target_request.c b/src/target/target_request.c index be176ca..c5de691 100644 --- a/src/target/target_request.c +++ b/src/target/target_request.c @@ -268,7 +268,7 @@ COMMAND_HANDLER(handle_target_request_debugmsgs_command) if (find_debug_msg_receiver(cmd_ctx, target) != NULL) receiving = 1; - if (argc > 0) + if (CMD_ARGC > 0) { if (!strcmp(args[0], "enable") || !strcmp(args[0], "charmsg")) { |