Make cJSON C++ compatible

This commit is contained in:
Max Bruckner
2016-12-15 19:43:32 +01:00
parent a1f2600883
commit 3d6ae11340
3 changed files with 4 additions and 4 deletions

4
test.c
View File

@@ -106,7 +106,7 @@ static int print_preallocated(cJSON *root)
/* create buffer to succeed */
/* the extra 64 bytes are in case a floating point value is printed */
len = strlen(out) + 64;
buf = malloc(len);
buf = (char*)malloc(len);
if (buf == NULL)
{
printf("Failed to allocate memory.\n");
@@ -115,7 +115,7 @@ static int print_preallocated(cJSON *root)
/* create buffer to fail */
len_fail = strlen(out);
buf_fail = malloc(len_fail);
buf_fail = (char*)malloc(len_fail);
if (buf_fail == NULL)
{
printf("Failed to allocate memory.\n");