diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-09 06:07:21 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-11 05:40:48 -0800 |
commit | e09d8938f5c27e49e81ed51379e1caa79b5f51c6 (patch) | |
tree | 1c9296e4af8169f729be107336b3f252b7955b35 /src/helper/command.c | |
parent | c9429693770751fd625ee23386ffde6a2da5da87 (diff) | |
download | openocd+libswd-e09d8938f5c27e49e81ed51379e1caa79b5f51c6.tar.gz openocd+libswd-e09d8938f5c27e49e81ed51379e1caa79b5f51c6.tar.bz2 openocd+libswd-e09d8938f5c27e49e81ed51379e1caa79b5f51c6.tar.xz openocd+libswd-e09d8938f5c27e49e81ed51379e1caa79b5f51c6.zip |
script_debug(): improve types
Use unsigned type for number of arguments.
Diffstat (limited to 'src/helper/command.c')
-rw-r--r-- | src/helper/command.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/helper/command.c b/src/helper/command.c index 2b8f646b..c6327029 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -59,12 +59,12 @@ static void tcl_output(void *privData, const char *file, unsigned line, extern command_context_t *global_cmd_ctx; -void script_debug(Jim_Interp *interp, const char *name, int argc, Jim_Obj *const *argv) +void script_debug(Jim_Interp *interp, const char *name, + unsigned argc, Jim_Obj *const *argv) { - int i; - LOG_DEBUG("command - %s", name); - for (i = 0; i < argc; i++) { + for (unsigned i = 0; i < argc; i++) + { int len; const char *w = Jim_GetString(argv[i], &len); |