From 503354c4d2d97fb9a47b2756f64abb124556ac37 Mon Sep 17 00:00:00 2001 From: mame Date: Mon, 28 Jul 2008 09:59:12 +0000 Subject: * thread.c (mutex_unlock): fix typo. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index 0a313abe1..c965a657d 100644 --- a/thread.c +++ b/thread.c @@ -2741,7 +2741,7 @@ mutex_unlock(mutex_t *mutex) th_mutex = tmp_mutex; } } - mutex->next_mutex = Qfalse; + mutex->next_mutex = NULL; } return err; -- cgit