summaryrefslogtreecommitdiff
path: root/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'expr.c')
-rw-r--r--expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/expr.c b/expr.c
index b3d8957..8351f2c 100644
--- a/expr.c
+++ b/expr.c
@@ -765,7 +765,7 @@ ExprResolveString(ExprDef * expr,
int len;
char *new;
len = strlen(leftRtrn.str) + strlen(rightRtrn.str) + 1;
- new = (char *) uAlloc(len);
+ new = malloc(len);
if (new)
{
snprintf(new, len, "%s%s", leftRtrn.str, rightRtrn.str);