Merge pull request #735 from RobLoach/patch-1

Fix clang++ compilation errors
This commit is contained in:
Ray
2019-01-24 15:17:51 +01:00
committed by GitHub

View File

@@ -1642,7 +1642,7 @@ const char *GetFileNameWithoutExt(const char *filePath)
// Try to allocate new string, same size as original
// NOTE: By default strlen() does not count the '\0' character
if ((result = malloc(strlen(filePath) + 1)) == NULL) return NULL;
if ((result = (char *)malloc(strlen(filePath) + 1)) == NULL) return NULL;
strcpy(result, filePath); // Make a copy of the string
@@ -1885,7 +1885,7 @@ void OpenURL(const char *url)
}
else
{
char *cmd = calloc(strlen(url) + 10, sizeof(char));
char *cmd = (char *)calloc(strlen(url) + 10, sizeof(char));
#if defined(_WIN32)
sprintf(cmd, "explorer '%s'", url);