summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-11 13:35:55 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-11 13:35:55 +0000
commit80de3313573aa760ff42ddc8b23778a65fab2e6b (patch)
treeed797c42d0c16202a8b516aaa8044196afc8500b /include
parenta704e21fcef27349b6a9826960d318025904a72d (diff)
merge revision(s) 57246: [Backport #13091]
fix typo [Bug #13091] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@57844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/ruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index a265baa3c4..06524c116d 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -1633,7 +1633,7 @@ rb_alloc_tmp_buffer2(volatile VALUE *store, long count, size_t elsize)
#ifdef C_ALLOCA
# define RB_ALLOCV(v, n) rb_alloc_tmp_buffer(&(v), (n))
# define RB_ALLOCV_N(type, v, n) \
- rb_alloc_tmp_buffer2(&(v), (n), sizeof(type))))
+ rb_alloc_tmp_buffer2(&(v), (n), sizeof(type))
#else
# define RUBY_ALLOCV_LIMIT 1024
# define RB_ALLOCV(v, n) ((n) < RUBY_ALLOCV_LIMIT ? \