gthread-posix: fix order of arguments in g_thread_abort() message

This commit is contained in:
Dan Winship 2012-02-22 11:38:43 -05:00
parent 88182d375e
commit 98a70df486

View File

@ -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 ();
}