From f20dfa206f8b6d37d3ebdb1f546f9f2017c60685 Mon Sep 17 00:00:00 2001 From: naruse Date: Sun, 1 Jan 2017 16:42:43 +0000 Subject: fix typo [Bug #13091] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57246 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/ruby.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/ruby') 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 ? \ -- cgit v1.2.3