Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
thaystg committed Mar 18, 2021
1 parent 389d8d5 commit ee7f036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/mono/mini/mini-wasm-debugger.c
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,7 @@ mono_wasm_set_value_on_object (int object_id, const char* name, const char* valu
if (!decode_value(type, val_buf, value)) {
return FALSE;
}
mono_runtime_try_invoke (p->set, obj, &val_buf, &exc, error);
mono_runtime_try_invoke (p->set, obj, (void **)&val_buf, &exc, error);
if (!is_ok (error) && exc == NULL)
exc = (MonoObject*) mono_error_convert_to_exception (error);
if (exc)
Expand Down

0 comments on commit ee7f036

Please sign in to comment.