Explorar o código

Fix missing cast for compilation as c++!!

git-svn-id: http://svn.code.sf.net/p/cjson/code@39 e3330c51-1366-4df0-8b21-3ccf24e3d50e
Dave Gamble %!s(int64=14) %!d(string=hai) anos
pai
achega
15dada46b5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      cJSON.c

+ 1 - 1
cJSON.c

@@ -337,7 +337,7 @@ static char *print_array(cJSON *item,int depth,int fmt)
 	}
 	
 	/* If we didn't fail, try to malloc the output string */
-	if (!fail) out=cJSON_malloc(len);
+	if (!fail) out=(char*)cJSON_malloc(len);
 	/* If that fails, we fail. */
 	if (!out) fail=1;