mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 13:06:14 +01:00
gthread-posix: fix order of arguments in g_thread_abort() message
This commit is contained in:
parent
88182d375e
commit
98a70df486
@ -72,7 +72,7 @@ g_thread_abort (gint status,
|
|||||||
const gchar *function)
|
const gchar *function)
|
||||||
{
|
{
|
||||||
fprintf (stderr, "GLib (gthread-posix.c): Unexpected error from C library during '%s': %s. Aborting.\n",
|
fprintf (stderr, "GLib (gthread-posix.c): Unexpected error from C library during '%s': %s. Aborting.\n",
|
||||||
strerror (status), function);
|
function, strerror (status));
|
||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user