mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-10-17 19:02:52 +02:00
Use g_abort() instead of abort() where possible
https://bugzilla.gnome.org/show_bug.cgi?id=665446
This commit is contained in:
@@ -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 ();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user