From: Øyvind H. <go...@us...> - 2010-01-11 15:01:33
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via e5349bfb4954366579b521dc8181c01c5bd4679e (commit) from fb71a0a0dddf68fa3f266aab5e35409773acc567 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e5349bfb4954366579b521dc8181c01c5bd4679e Author: Ãyvind Harboe <oyv...@zy...> Date: Mon Jan 11 14:59:14 2010 +0100 target: return JIM_OK instead of ERROR_OK No change in actual binary as JIM_OK == ERROR_OK, but JIM_OK is correct here. Signed-off-by: Ãyvind Harboe <oyv...@zy...> diff --git a/src/jtag/tcl.c b/src/jtag/tcl.c index 7329cee..f48993f 100644 --- a/src/jtag/tcl.c +++ b/src/jtag/tcl.c @@ -623,7 +623,7 @@ static int jim_newtap_cmd(Jim_GetOptInfo *goi) if (pTap->ir_length != 0) { jtag_tap_init(pTap); - return ERROR_OK; + return JIM_OK; } Jim_SetResult_sprintf(goi->interp, ----------------------------------------------------------------------- Summary of changes: src/jtag/tcl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Main OpenOCD repository |