ruby-changes:45173
From: naruse <ko1@a...>
Date: Mon, 2 Jan 2017 01:42:48 +0900 (JST)
Subject: [ruby-changes:45173] naruse:r57246 (trunk): fix typo [Bug #13091]
naruse 2017-01-02 01:42:43 +0900 (Mon, 02 Jan 2017) New Revision: 57246 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57246 Log: fix typo [Bug #13091] Modified files: trunk/include/ruby/ruby.h Index: include/ruby/ruby.h =================================================================== --- include/ruby/ruby.h (revision 57245) +++ include/ruby/ruby.h (revision 57246) @@ -1633,7 +1633,7 @@ rb_alloc_tmp_buffer2(volatile VALUE *sto https://github.com/ruby/ruby/blob/trunk/include/ruby/ruby.h#L1633 #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 ? \ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/