Fix debugging programs statically linked against the thread library.
[deliverable/binutils-gdb.git] / gdb / parse.c
index 693ab95a7cac57a351037dcdb7cd77a9e05a84f7..fae00963435fb0417ada7ccb13b1537a700b6c6d 100644 (file)
@@ -177,7 +177,7 @@ end_arglist (void)
   register struct funcall *call = funcall_chain;
   funcall_chain = call->next;
   arglist_len = call->arglist_len;
-  free ((PTR) call);
+  xfree (call);
   return val;
 }
 
@@ -192,7 +192,7 @@ free_funcalls (void *ignore)
   for (call = funcall_chain; call; call = next)
     {
       next = call->next;
-      free ((PTR) call);
+      xfree (call);
     }
 }
 \f
This page took 0.023232 seconds and 4 git commands to generate.