mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-10-31 16:32:18 +01:00 
			
		
		
		
	gthread-posix: fix order of arguments in g_thread_abort() message
This commit is contained in:
		| @@ -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 (); | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user