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

ruby-changes:52269

From: normal <ko1@a...>
Date: Mon, 20 Aug 2018 08:36:28 +0900 (JST)
Subject: [ruby-changes:52269] normal:r64477 (trunk): thread_sync.c (rb_condvar_initialize): remove extra semicolon

normal	2018-08-20 08:36:23 +0900 (Mon, 20 Aug 2018)

  New Revision: 64477

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64477

  Log:
    thread_sync.c (rb_condvar_initialize): remove extra semicolon
    
    Oops :x

  Modified files:
    trunk/thread_sync.c
Index: thread_sync.c
===================================================================
--- thread_sync.c	(revision 64476)
+++ thread_sync.c	(revision 64477)
@@ -1357,7 +1357,7 @@ condvar_alloc(VALUE klass) https://github.com/ruby/ruby/blob/trunk/thread_sync.c#L1357
 static VALUE
 rb_condvar_initialize(VALUE self)
 {
-    struct rb_condvar *cv = condvar_ptr(self);;
+    struct rb_condvar *cv = condvar_ptr(self);
     list_head_init(&cv->waitq);
     return self;
 }

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

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