diff options
author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-01-11 12:53:55 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-01-11 12:58:06 +0100 |
commit | 6d8604de37855da6e9acf79adbb488788bdc9917 (patch) | |
tree | 2f494ad8026604951363432148e8bf6750aa7b27 /src | |
parent | c74ca40e09baebe8b86b1a77ad343f7b8ebde5d6 (diff) | |
download | riscv-openocd-6d8604de37855da6e9acf79adbb488788bdc9917.zip riscv-openocd-6d8604de37855da6e9acf79adbb488788bdc9917.tar.gz riscv-openocd-6d8604de37855da6e9acf79adbb488788bdc9917.tar.bz2 |
commands: make error messages a bit more terse
we don't need to know the build path of command.c when
reading normal user level error messages.
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/helper/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/command.c b/src/helper/command.c index 568596d..cf66f8a 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -349,7 +349,7 @@ static int register_command_handler(struct command_context *cmd_ctx, if (NULL == override_name) return JIM_ERR; - retval = Jim_Eval_Named(interp, override_name, __FILE__, __LINE__); + retval = Jim_Eval_Named(interp, override_name, __THIS__FILE__ , __LINE__); free((void *)override_name); return retval; |