gthread-posix: fix order of arguments in g_thread_abort() message
authorDan Winship <danw@gnome.org>
Wed, 22 Feb 2012 16:38:43 +0000 (11:38 -0500)
committerDan Winship <danw@gnome.org>
Wed, 22 Feb 2012 16:38:43 +0000 (11:38 -0500)
glib/gthread-posix.c

index 63b3313..9500709 100644 (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 ();
 }