From: Dan Winship Date: Wed, 22 Feb 2012 16:38:43 +0000 (-0500) Subject: gthread-posix: fix order of arguments in g_thread_abort() message X-Git-Tag: 2.31.20~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=98a70df48603c3c4fc63acb22a9bf6985bc0fa55;p=platform%2Fupstream%2Fglib.git gthread-posix: fix order of arguments in g_thread_abort() message --- diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c index 63b3313..9500709 100644 --- a/glib/gthread-posix.c +++ b/glib/gthread-posix.c @@ -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 (); }