Fix build in Visual Studio

This commit is contained in:
James Myatt
2015-10-09 23:24:55 +01:00
parent 12916e229c
commit 3f012eb0f8

View File

@@ -432,7 +432,7 @@ void json_object_object_add_ex(struct json_object* jso,
lh_table_insert_w_hash(jso->o.c_object, k, val, hash, opts); lh_table_insert_w_hash(jso->o.c_object, k, val, hash, opts);
return; return;
} }
existing_value = (void *)existing_entry->v; existing_value = (json_object *)existing_entry->v;
if (existing_value) if (existing_value)
json_object_put(existing_value); json_object_put(existing_value);
existing_entry->v = val; existing_entry->v = val;