OCT 1.删除无用标记

This commit is contained in:
dongwenze 2023-03-15 18:37:42 +08:00
parent 087dd7d5de
commit 878486b58f
1 changed files with 0 additions and 1 deletions

View File

@ -45,7 +45,6 @@ const char *proto_schema_validation(const char *pJsonStr) {
cJSON *pRspRoot = cJSON_CreateObject(); cJSON *pRspRoot = cJSON_CreateObject();
cJSON_AddNumberToObject(pRspRoot, "status", ERR_JSON_PARSE_OBJ); cJSON_AddNumberToObject(pRspRoot, "status", ERR_JSON_PARSE_OBJ);
cJSON_AddStringToObject(pRspRoot, "message", getErrorEnumDesc(ERR_JSON_PARSE_OBJ)); cJSON_AddStringToObject(pRspRoot, "message", getErrorEnumDesc(ERR_JSON_PARSE_OBJ));
printf("ERR_JSON_PARSE_OBJ\n");
return proto_create_new(pRspRoot, 200); return proto_create_new(pRspRoot, 200);
} }