ruby-changes:14788
From: nobu <ko1@a...>
Date: Fri, 12 Feb 2010 18:00:30 +0900 (JST)
Subject: [ruby-changes:14788] Ruby:r26650 (trunk): * vm.c (thread_free): fixed typo.
nobu 2010-02-12 17:55:24 +0900 (Fri, 12 Feb 2010) New Revision: 26650 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=26650 Log: * vm.c (thread_free): fixed typo. Modified files: trunk/ChangeLog trunk/vm.c Index: ChangeLog =================================================================== --- ChangeLog (revision 26649) +++ ChangeLog (revision 26650) @@ -1,3 +1,7 @@ +Fri Feb 12 17:55:21 2010 Nobuyoshi Nakada <nobu@r...> + + * vm.c (thread_free): fixed typo. + Fri Feb 12 02:27:39 2010 Akinori MUSHA <knu@i...> * lib/set.rb (Set#initialize, Set#replace, Set#merge) Index: vm.c =================================================================== --- vm.c (revision 26649) +++ vm.c (revision 26650) @@ -1681,7 +1681,7 @@ 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) { -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/