Skip to content

Commit

Permalink
fix mono build
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdageek committed Apr 6, 2023
1 parent 71fb5c2 commit fa05fbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mono/mono/containers/dn-rt-utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ void
dn_rt_mono_failfast_msgv (const char *format, va_list ap)
{
g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR, format, ap);
g_assert_not_reached ();
}

void
dn_rt_mono_failfast_nosmg (const char *file, int line)
dn_rt_mono_failfast_nomsg (const char *file, int line)
{
mono_assertion_message_disabled (file, line);
}

0 comments on commit fa05fbf

Please sign in to comment.