- implemented -Wsign-compare
[cparser] / symbol_table.c
index ca65de6..8f546b3 100644 (file)
@@ -10,10 +10,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  = 0;
-       entry->thing  = NULL;
+       entry->string      = string;
+       entry->ID          = T_IDENTIFIER;
+       entry->pp_ID       = 0;
+       entry->declaration = NULL;
 }
 
 #define HashSet                    symbol_table_t