summaryrefslogtreecommitdiff
path: root/gdb/p-exp.y
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2008-10-25 02:16:39 +0000
committerPedro Alves <palves@redhat.com>2008-10-25 02:16:39 +0000
commitbbe2ba601d37a94408f5783549352571b1b87675 (patch)
tree1a64dc07aca4819b4d71f98163f42ae3000d342f /gdb/p-exp.y
parent0775829945ae55c63a5e3389b2052a7ffebc6d0f (diff)
* ada-exp.y (write_object_renaming): Use malloc instead of
xmalloc. * p-exp.y (pop_current_type): Use free instead of xfree.
Diffstat (limited to 'gdb/p-exp.y')
-rw-r--r--gdb/p-exp.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/p-exp.y b/gdb/p-exp.y
index 4b5ceb2e66..e86cf893bd 100644
--- a/gdb/p-exp.y
+++ b/gdb/p-exp.y
@@ -1023,7 +1023,7 @@ pop_current_type (void)
{
current_type = tp->stored;
tp_top = tp->next;
- xfree (tp);
+ free (tp);
}
}