From e88b9ef2ae6e309b12499c44bf96420e1ee1c387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Fri, 2 Apr 1999 07:18:05 -0800 Subject: [PATCH] bugfix.. Rev: src/error.c:1.32 --- src/error.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/error.c b/src/error.c index 8563295640..f05aa5129b 100644 --- a/src/error.c +++ b/src/error.c @@ -18,7 +18,7 @@ #include "operators.h" #include "module_support.h" -RCSID("$Id: error.c,v 1.31 1999/03/23 16:26:17 hubbe Exp $"); +RCSID("$Id: error.c,v 1.32 1999/04/02 15:18:05 hubbe Exp $"); #undef ATTRIBUTE #define ATTRIBUTE(X) @@ -374,7 +374,7 @@ void generic_error_va(struct object *o, push_int(0); push_text(func); - for (i=-args; i; i++) + for (i=0;i<args;i++) push_svalue(base_sp + i); f_aggregate(args + 3); f_aggregate(1); -- GitLab