• M
    Fix format problem with empty objects · 9cc37a28
    Max Bruckner 提交于
    When printing empty objects, the closing curly brace was missing one
    indentation level.
    
    Example from the output of test_utils:
    
    BEFORE FIX:
    {
    	"foo":	"bar",
    	"child":	{
    		"grandchild":	{
    	}
    	}
    }
    
    AFTER FIX:
    {
    	"foo":	"bar",
    	"child":	{
    		"grandchild":	{
    		}
    	}
    }
    9cc37a28
cJSON.c 27.4 KB