From 248de6858d7110826baf970c81f24783fa131cc0 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 11 Aug 2001 21:46:02 +0000 Subject: [PATCH] hopefully take care of freebsd --- tools/qfcc/include/expr.h | 4 ++-- tools/qfcc/source/emit.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/qfcc/include/expr.h b/tools/qfcc/include/expr.h index 1d5b630e8..7dbe85a76 100644 --- a/tools/qfcc/include/expr.h +++ b/tools/qfcc/include/expr.h @@ -21,7 +21,7 @@ typedef struct { statref_t *refs; dstatement_t *statement; char *name; -} label_t; +} elabel_t; typedef struct { struct expr_s *head; @@ -43,7 +43,7 @@ typedef struct expr_s { string_t file; int paren; union { - label_t label; + elabel_t label; block_t block; struct { int op; diff --git a/tools/qfcc/source/emit.c b/tools/qfcc/source/emit.c index cfeb1644d..04d666805 100644 --- a/tools/qfcc/source/emit.c +++ b/tools/qfcc/source/emit.c @@ -324,7 +324,7 @@ emit_expr (expr_t *e) def_t *def_a; def_t *def_b; statref_t *ref; - label_t *label; + elabel_t *label; //opcode_t *op; switch (e->type) {