summaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-28 09:59:12 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-28 09:59:12 +0000
commit503354c4d2d97fb9a47b2756f64abb124556ac37 (patch)
treeff789228b4d941825f1d473dffe097f5bba1b74f /thread.c
parent36fd47ed9421d52e2efb79f9b8c8a2f3310e07be (diff)
downloadruby-503354c4d2d97fb9a47b2756f64abb124556ac37.tar.gz
ruby-503354c4d2d97fb9a47b2756f64abb124556ac37.tar.xz
ruby-503354c4d2d97fb9a47b2756f64abb124556ac37.zip
* thread.c (mutex_unlock): fix typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
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;