added return value for success

added return value for success
This commit is contained in:
Michael Chen 2015-07-06 13:53:01 -04:00
parent 982c2664a8
commit 580281edcd
1 changed files with 1 additions and 0 deletions

View File

@ -47,6 +47,7 @@ static JSON_INLINE void json_init(json_t *json, json_type type)
int json_set_flag(json_t *json, uint32_t input)
{
json->flag = input;
return 0;
}
/*** object ***/