summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-04-21 16:44:26 -0400
committerMatthias Clasen <mclasen@redhat.com>2010-05-02 20:45:13 -0400
commitf2b4060717dc4bd63b21a6c1d554fe06ece59de7 (patch)
treeadd640680118ce89e1c9c51b56b2c9c36b2d48af
parente7a7d6873cb49f6c8bba5c2a5d078dbe607d62bd (diff)
Fix typo in GMutex error message
(cherry picked from commit 0d9a40b8943ec3b9926efad93a28687708cc2038)
-rw-r--r--gthread/gthread-impl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gthread/gthread-impl.c b/gthread/gthread-impl.c
index f0f2be05d..b4836577c 100644
--- a/gthread/gthread-impl.c
+++ b/gthread/gthread-impl.c
@@ -105,7 +105,7 @@ g_mutex_lock_errorcheck_impl (GMutex *mutex,
g_thread_functions_for_glib_use.thread_self (&self);
if (g_system_thread_equal (info->owner, self))
- g_error ("Trying to recursivly lock a mutex at '%s', "
+ g_error ("Trying to recursively lock a mutex at '%s', "
"previously locked at '%s'",
loc, info->location);