This commit is contained in:
jl777
2019-03-29 03:46:40 -11:00
parent 3dacf07fe3
commit fea8ac8afd

View File

@@ -1819,7 +1819,7 @@ cJSON *get_urljson(char *url)
char *jsonstr; cJSON *json = 0;
if ( (jsonstr= issue_curl(url)) != 0 )
{
fprintf(stderr,"(%s) -> (%s)\n",url,jsonstr);
//fprintf(stderr,"(%s) -> (%s)\n",url,jsonstr);
json = cJSON_Parse(jsonstr);
free(jsonstr);
}