]> git.saurik.com Git - bison.git/blobdiff - src/symlist.c
Change @dircategory from "GNU programming tools" to "Software development".
[bison.git] / src / symlist.c
index 9d46d8a522dda81b83f525c807040fc54343d05a..c7510c4397f4c5996e8d27d232d7aea4226c5a90 100644 (file)
@@ -32,7 +32,7 @@
 symbol_list *
 symbol_list_new (symbol *sym, location loc)
 {
 symbol_list *
 symbol_list_new (symbol *sym, location loc)
 {
-  symbol_list *res = XMALLOC (symbol_list, 1);
+  symbol_list *res = xmalloc (sizeof *res);
   res->next = NULL;
   res->sym = sym;
   res->location = loc;
   res->next = NULL;
   res->sym = sym;
   res->location = loc;