From: Andreas Fritiofson Date: Thu, 17 Jun 2010 23:33:22 +0000 (+0200) Subject: reverse order of Jim stack trace output X-Git-Tag: v0.5.0-rc1~578 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=3f9d377ce788365844f9225064cb9b0f0b4542ef reverse order of Jim stack trace output The stack traces makes much more sense this way. Signed-off-by: Andreas Fritiofson --- diff --git a/src/helper/jim.c b/src/helper/jim.c index 7fdf52c5a0..071e5575b0 100644 --- a/src/helper/jim.c +++ b/src/helper/jim.c @@ -12291,7 +12291,7 @@ void Jim_PrintErrorMessage(Jim_Interp *interp) Jim_fprintf(interp,interp->cookie_stderr, "%s" JIM_NL, Jim_GetString(interp->result, NULL)); Jim_ListLength(interp, interp->stackTrace, &len); - for (i = len-3; i >= 0; i-= 3) { + for (i = 0; i < len; i += 3) { Jim_Obj *objPtr=NULL; const char *proc, *file, *line;