From f392c395df4145839fa3045770e9a204b7fe2996 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 13 Dec 2001 16:40:46 +0000 Subject: [PATCH] fix some uninitialized warnings my gcc missed, but misty's got --- tools/qfcc/source/expr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/expr.c b/tools/qfcc/source/expr.c index 736e6caad..484978b9c 100644 --- a/tools/qfcc/source/expr.c +++ b/tools/qfcc/source/expr.c @@ -1636,9 +1636,9 @@ address_expr (expr_t *e1, expr_t *e2, type_t *t) } break; } - return error (e, "invalid type for unary &"); + return error (e1, "invalid type for unary &"); default: - return error (e, "invalid type for unary &"); + return error (e1, "invalid type for unary &"); } if (e2) { if (e->type == ex_pointer && e2->type == ex_short) {