From 25d274b35a5d466eba25732f3d47834b073c8201 Mon Sep 17 00:00:00 2001 From: normal Date: Sun, 19 Aug 2018 23:36:23 +0000 Subject: [PATCH] thread_sync.c (rb_condvar_initialize): remove extra semicolon Oops :x git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64477 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thread_sync.c b/thread_sync.c index 79eb1768c4..7beee95910 100644 --- a/thread_sync.c +++ b/thread_sync.c @@ -1357,7 +1357,7 @@ condvar_alloc(VALUE klass) 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; }