Skip to content
Snippets Groups Projects
Commit 021d3cb9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

C++ compile fixes

parent e7b46c63
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@
static inline char *strdup (const char *str)
{
size_t len = strlen (str) + 1;
char *res = malloc (len);
char *res = (char *)malloc (len);
if (res) memcpy (res, str, len);
return res;
}
......@@ -45,7 +45,7 @@ static inline char *strdup (const char *str)
static inline int vasprintf (char **strp, const char *fmt, va_list ap)
{
int len = vsnprintf (NULL, 0, fmt, ap) + 1;
char *res = malloc (len);
char *res = (char *)malloc (len);
if (res == NULL)
return -1;
*strp = res;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment