diff options
Diffstat (limited to 'libiberty/ternary.c')
-rw-r--r-- | libiberty/ternary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/ternary.c b/libiberty/ternary.c index e57e944..8fc561a 100644 --- a/libiberty/ternary.c +++ b/libiberty/ternary.c @@ -74,7 +74,7 @@ ternary_insert (ternary_tree *root, const char *s, PTR data, int replace) for (;;) { /* Allocate the memory for the node, and fill it in */ - *pcurr = (ternary_tree) xmalloc (sizeof (ternary_node)); + *pcurr = XNEW (ternary_node); curr = *pcurr; curr->splitchar = *s; curr->lokid = curr->hikid = curr->eqkid = 0; |