summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/heap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heap.c b/src/heap.c
index b0a0200..0e451a4 100644
--- a/src/heap.c
+++ b/src/heap.c
@@ -87,7 +87,7 @@ debugging_strdup (const char *s, const char *file, unsigned long line)
assert (s != NULL);
len = strlen (s) + 1;
- ptr = malloc (len);
+ ptr = (char *)malloc (len);
if (!ptr)
return NULL;
memcpy (ptr, s, len);