[前][次][番号順一覧][スレッド一覧]

ruby-changes:6728

From: mame <ko1@a...>
Date: Mon, 28 Jul 2008 18:59:26 +0900 (JST)
Subject: [ruby-changes:6728] Ruby:r18244 (trunk): * thread.c (mutex_unlock): fix typo.

mame	2008-07-28 18:59:12 +0900 (Mon, 28 Jul 2008)

  New Revision: 18244

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18244

  Log:
    * thread.c (mutex_unlock): fix typo.

  Modified files:
    trunk/ChangeLog
    trunk/thread.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 18243)
+++ ChangeLog	(revision 18244)
@@ -1,3 +1,7 @@
+Mon Jul 28 18:58:46 2008  Yusuke Endoh  <mame@t...>
+
+	* thread.c (mutex_unlock): fix typo.
+
 Mon Jul 28 18:15:45 2008  Nobuyoshi Nakada  <nobu@r...>
 
 	* file.c (rb_find_file_ext, rb_find_file): not to split load path with
Index: thread.c
===================================================================
--- thread.c	(revision 18243)
+++ thread.c	(revision 18244)
@@ -2741,7 +2741,7 @@
 		th_mutex = tmp_mutex;
 	    }
 	}
-	mutex->next_mutex = Qfalse;
+	mutex->next_mutex = NULL;
     }
 
     return err;

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]