Skip to content

Commit

Permalink
[cxx][debug-interp] Cast once from void* to non-void*.
Browse files Browse the repository at this point in the history
Commit migrated from mono/mono@21d7d41
  • Loading branch information
jaykrell authored and lewing committed Oct 21, 2019
1 parent 9fb7e2a commit e3f3e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/mono/mini/interp/interp.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ static void
db_match_method (gpointer data, gpointer user_data)
{
MonoMethod *m = (MonoMethod*)user_data;
MonoMethodDesc *desc = data;
MonoMethodDesc *desc = (MonoMethodDesc*)data;

if (mono_method_desc_full_match (desc, m))
break_on_method = 1;
Expand Down

0 comments on commit e3f3e5c

Please sign in to comment.