Use g_abort() instead of abort() where possible

https://bugzilla.gnome.org/show_bug.cgi?id=665446
This commit is contained in:
Руслан Ижбулатов
2016-03-30 14:01:30 +00:00
parent 5974428d25
commit e47904a26f
7 changed files with 19 additions and 18 deletions

View File

@@ -324,7 +324,7 @@ _g_log_abort (gboolean breakpoint)
if (breakpoint)
G_BREAKPOINT ();
else
abort ();
g_abort ();
}
#ifdef G_OS_WIN32
@@ -1190,7 +1190,7 @@ g_assert_warning (const char *log_domain,
line,
pretty_function);
_g_log_abort (FALSE);
abort ();
g_abort ();
}
/**