summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/thread.c b/thread.c
index de60b4d226..49d4d28df0 100644
--- a/thread.c
+++ b/thread.c
@@ -2824,7 +2824,7 @@ thgroup_memsize(const void *ptr)
static const rb_data_type_t thgroup_data_type = {
"thgroup",
- NULL, RUBY_TYPED_DEFAULT_FREE, thgroup_memsize,
+ {NULL, RUBY_TYPED_DEFAULT_FREE, thgroup_memsize,},
};
/*
@@ -3062,7 +3062,7 @@ mutex_memsize(const void *ptr)
static const rb_data_type_t mutex_data_type = {
"mutex",
- mutex_mark, mutex_free, mutex_memsize,
+ {mutex_mark, mutex_free, mutex_memsize,},
};
static VALUE
@@ -3433,7 +3433,7 @@ barrier_mark(void *ptr)
static const rb_data_type_t barrier_data_type = {
"barrier",
- barrier_mark, 0, 0,
+ {barrier_mark, 0, 0,},
};
static VALUE