]> git.saurik.com Git - bison.git/blobdiff - src/symlist.c
Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
[bison.git] / src / symlist.c
index 9d46d8a522dda81b83f525c807040fc54343d05a..5b25ac5689d86824fc7c587a117f3cfedf6c3ee3 100644 (file)
@@ -32,7 +32,7 @@
 symbol_list *
 symbol_list_new (symbol *sym, location loc)
 {
-  symbol_list *res = XMALLOC (symbol_list, 1);
+  symbol_list *res = MALLOC (res, 1);
   res->next = NULL;
   res->sym = sym;
   res->location = loc;