Correct off-by-whatever errors of the source position in parse_select_expression().
[cparser] / symbol_table.c
index 00b38ad..64f2c22 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of cparser.
- * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
+ * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -30,10 +30,10 @@ struct obstack symbol_obstack;
 static inline
 void init_symbol_table_entry(symbol_t *entry, const char *string)
 {
-       entry->string      = string;
-       entry->ID          = T_IDENTIFIER;
-       entry->pp_ID       = TP_IDENTIFIER;
-       entry->declaration = NULL;
+       entry->string = string;
+       entry->ID     = T_IDENTIFIER;
+       entry->pp_ID  = TP_IDENTIFIER;
+       entry->entity = NULL;
 }
 
 #define HashSet                    symbol_table_t
@@ -66,9 +66,9 @@ void init_symbol_table_entry(symbol_t *entry, const char *string)
 
 static symbol_table_t  symbol_table;
 
-symbol_t *symbol_table_insert(const char *symbol)
+symbol_t *symbol_table_insert(const char *string)
 {
-       return _symbol_table_insert(&symbol_table, symbol);
+       return _symbol_table_insert(&symbol_table, string);
 }
 
 void init_symbol_table(void)