summaryrefslogtreecommitdiff
path: root/thread_sync.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-19 23:36:23 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-19 23:36:23 +0000
commit25d274b35a5d466eba25732f3d47834b073c8201 (patch)
tree313d954f8dadbb3fd4b666bb2971bfbfe2e4de81 /thread_sync.c
parentd9cb9017794a23924488266ee0b475d78fbf3bb3 (diff)
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
Diffstat (limited to 'thread_sync.c')
-rw-r--r--thread_sync.c2
1 files changed, 1 insertions, 1 deletions
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;
}