From 083c43e22efb5353a258827a9e6f2f995cfe822d Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Thu, 25 Dec 2008 11:55:27 +0100 Subject: fixes some 64-bit related bugs. Filter code used 'aux' integer field of 'symbol' struct to store ptr to next symbol and both 'aux2' and 'def' fields for value. Changed to just 'def' for value and 'aux2' for ptr to next symbol. Also another minor bugfix. --- conf/conf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf') diff --git a/conf/conf.h b/conf/conf.h index 5d5e4bc..17b975b 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -76,7 +76,7 @@ struct symbol { struct sym_scope *scope; int class; int aux; - void *aux2; + void *aux2; void *def; char name[1]; }; -- cgit v1.2.3