summaryrefslogtreecommitdiff
path: root/src/tparam.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tparam.c')
-rw-r--r--src/tparam.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tparam.c b/src/tparam.c
index 4d26ef524fb..9492d9dee36 100644
--- a/src/tparam.c
+++ b/src/tparam.c
@@ -98,7 +98,7 @@ tparam1 (const char *string, char *outstring, int len,
if (outlen == 0)
{
outlen = len + 40;
- new = (char *) xmalloc (outlen);
+ new = xmalloc (outlen);
memcpy (new, outstring, offset);
}
else