heap: fix an implicit cast warning.
Michael
This commit is contained in:
parent
ab9e8a59e2
commit
8f50875740
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user