浏览代码

reformatting: cJSON_GetErrorPtr

Max Bruckner 8 年之前
父节点
当前提交
c42b774f9f
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      cJSON.c

+ 4 - 1
cJSON.c

@@ -34,7 +34,10 @@
 
 
 static const char *global_ep;
 static const char *global_ep;
 
 
-const char *cJSON_GetErrorPtr(void) {return global_ep;}
+const char *cJSON_GetErrorPtr(void)
+{
+    return global_ep;
+}
 
 
 static int cJSON_strcasecmp(const char *s1,const char *s2)
 static int cJSON_strcasecmp(const char *s1,const char *s2)
 {
 {