瀏覽代碼

reformatting: print_string

Max Bruckner 8 年之前
父節點
當前提交
7423692586
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5 2
      cJSON.c

+ 5 - 2
cJSON.c

@@ -759,8 +759,11 @@ static char *print_string_ptr(const char *str, printbuffer *p)
     return out;
 }
 
-/* Invote print_string_ptr (which is useful) on an item. */
-static char *print_string(cJSON *item,printbuffer *p)	{return print_string_ptr(item->valuestring,p);}
+/* Invoke print_string_ptr (which is useful) on an item. */
+static char *print_string(cJSON *item, printbuffer *p)
+{
+    return print_string_ptr(item->valuestring, p);
+}
 
 /* Predeclare these prototypes. */
 static const char *parse_value(cJSON *item,const char *value,const char **ep);