From 829db4cec3fa59e1ec905e226851ae719858c8d4 Mon Sep 17 00:00:00 2001 From: Antoine Jacoutot Date: Sat, 31 Mar 2012 22:48:42 +0200 Subject: [PATCH] gthread-posix: fix typo in error message --- glib/gthread-posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c index 9500709c0..3f74aa4de 100644 --- a/glib/gthread-posix.c +++ b/glib/gthread-posix.c @@ -225,7 +225,7 @@ g_mutex_unlock (GMutex *mutex) gint status; if G_UNLIKELY ((status = pthread_mutex_unlock (g_mutex_get_impl (mutex))) != 0) - g_thread_abort (status, "pthread_mutex_lock"); + g_thread_abort (status, "pthread_mutex_unlock"); } /** -- 2.11.0