mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 08:56:16 +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)
|
||||
{
|
||||
fprintf (stderr, "GLib (gthread-posix.c): Unexpected error from C library during '%s': %s. Aborting.\n",
|
||||
strerror (status), function);
|
||||
function, strerror (status));
|
||||
abort ();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user