diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-02-12 08:55:24 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-02-12 08:55:24 +0000 |
commit | 49f62d73b8a8428cf6349ad83c2632ba7a44b59a (patch) | |
tree | 3e83b9acf25aeb5bdf6d39a029b013e6d473df20 /vm.c | |
parent | 0d10b774035c56a7f14ae2582e29b9e7604029d8 (diff) | |
download | ruby-49f62d73b8a8428cf6349ad83c2632ba7a44b59a.tar.gz |
* vm.c (thread_free): fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26650 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r-- | vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1681,7 +1681,7 @@ thread_free(void *ptr) rb_bug("thread_free: locking_mutex must be NULL (%p:%ld)", (void *)th, th->locking_mutex); } if (th->keeping_mutexes != NULL) { - rb_bug("thread_free: keeping_mutexes must be NULL (%p:%ld)", (void *)th, th->locking_mutex); + rb_bug("thread_free: keeping_mutexes must be NULL (%p:%p)", (void *)th, th->keeping_mutexes); } if (th->local_storage) { |