Make sure to include the "*" on function pointer arguments to avoid a warnings from VS2015. See also PR#384.

This commit is contained in:
Eric Haszlakiewicz
2017-12-04 18:17:52 -05:00
parent 95015d474e
commit aedd36ac8b
4 changed files with 6 additions and 6 deletions

View File

@@ -269,7 +269,7 @@ void json_object_set_userdata(json_object *jso, void *userdata,
/* set a custom conversion to string */
void json_object_set_serializer(json_object *jso,
json_object_to_json_string_fn to_string_func,
json_object_to_json_string_fn *to_string_func,
void *userdata,
json_object_delete_fn *user_delete)
{