mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix typo [Bug #13091]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57246 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9df88e9cae
commit
b5381899c8
1 changed files with 1 additions and 1 deletions
|
@ -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 ? \
|
||||
|
|
Loading…
Reference in a new issue