fix formatting.
git-svn-id: svn://svn.code.sf.net/p/cjson/code@62 e3330c51-1366-4df0-8b21-3ccf24e3d50e
This commit is contained in:
parent
d9fc81e6c8
commit
2abfb716d1
4
cJSON.c
4
cJSON.c
@ -510,7 +510,7 @@ static char *print_array(cJSON *item,int depth,int fmt,printbuffer *p)
|
|||||||
ptr=out+1;*ptr=0;
|
ptr=out+1;*ptr=0;
|
||||||
for (i=0;i<numentries;i++)
|
for (i=0;i<numentries;i++)
|
||||||
{
|
{
|
||||||
tmplen=strlen(entries[i]);memcpy(ptr,entries[i],tmplen);ptr+=tmplen;
|
tmplen=strlen(entries[i]);memcpy(ptr,entries[i],tmplen);ptr+=tmplen;
|
||||||
if (i!=numentries-1) {*ptr++=',';if(fmt)*ptr++=' ';*ptr=0;}
|
if (i!=numentries-1) {*ptr++=',';if(fmt)*ptr++=' ';*ptr=0;}
|
||||||
cJSON_free(entries[i]);
|
cJSON_free(entries[i]);
|
||||||
}
|
}
|
||||||
@ -652,7 +652,7 @@ static char *print_object(cJSON *item,int depth,int fmt,printbuffer *p)
|
|||||||
for (i=0;i<numentries;i++)
|
for (i=0;i<numentries;i++)
|
||||||
{
|
{
|
||||||
if (fmt) for (j=0;j<depth;j++) *ptr++='\t';
|
if (fmt) for (j=0;j<depth;j++) *ptr++='\t';
|
||||||
tmplen=strlen(names[i]);memcpy(ptr,names[i],tmplen);ptr+=tmplen;
|
tmplen=strlen(names[i]);memcpy(ptr,names[i],tmplen);ptr+=tmplen;
|
||||||
*ptr++=':';if (fmt) *ptr++='\t';
|
*ptr++=':';if (fmt) *ptr++='\t';
|
||||||
strcpy(ptr,entries[i]);ptr+=strlen(entries[i]);
|
strcpy(ptr,entries[i]);ptr+=strlen(entries[i]);
|
||||||
if (i!=numentries-1) *ptr++=',';
|
if (i!=numentries-1) *ptr++=',';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user