From 7009af2b130afc660eb2f09ecfd42dd26906dd40 Mon Sep 17 00:00:00 2001 From: eku Date: Thu, 6 May 2004 05:46:24 +0000 Subject: [PATCH] Fixed compiler error: cannot convert `dsql_nod**' to `dsql_nod*' in initialization --- src/dsql/parse.y | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dsql/parse.y b/src/dsql/parse.y index 12221a5d51..1e764c1ff0 100644 --- a/src/dsql/parse.y +++ b/src/dsql/parse.y @@ -122,7 +122,8 @@ const int DEF_CACHE_BUFFERS = 1000; // Using this option causes build problems on Win32 with bison 1.28 //#define YYSTACK_USE_ALLOCA 1 -#define YYSTYPE dsql_nod* +typedef dsql_nod* YYSTYPE; +#define YYSTYPE YYSTYPE #if defined(DEBUG) || defined(DEV_BUILD) #define YYDEBUG 1 #endif