From 525f2b78f46ab49cdd9ab7f01db1fc3376e2ec9e Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 10 May 2000 22:11:27 +0000 Subject: [PATCH] warnings fix for older gcc/egcs --- source/pr_exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/pr_exec.c b/source/pr_exec.c index 8f5c351..be997ec 100644 --- a/source/pr_exec.c +++ b/source/pr_exec.c @@ -360,9 +360,9 @@ PR_ExecuteProgram */ void PR_ExecuteProgram (func_t fnum) { - eval_t *a, *b, *c; + eval_t *a=0, *b=0, *c=0; int s; - dstatement_t *st; + dstatement_t *st=0; dfunction_t *f, *newf; int runaway; int i;