aboutsummaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-17 04:20:16 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-17 04:20:16 +0000
commit57e557908a8c4c01390b7ea52b09f8370a3d7dd3 (patch)
treeef371397deee051c441b4bb77b18fc3663b0b461 /numeric.c
parent664ee1a89f9212042f1a02c9a1684f944a3874fe (diff)
downloadruby-57e557908a8c4c01390b7ea52b09f8370a3d7dd3.tar.gz
* enumerator.c (enumerator_block_call): use PARRAY_CONST_PTR()
instead of RARRAY_PTR(). * io.c (rb_io_s_popen): ditto. * numeric.c (num_step_size): ditto. * vm_eval.c (rb_apply): ditto. * vm_eval.c (rb_eval_cmd): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45353 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index 0c84c49332..7e5ea42cf8 100644
--- a/numeric.c
+++ b/numeric.c
@@ -1889,7 +1889,7 @@ num_step_size(VALUE from, VALUE args, VALUE eobj)
VALUE to, step, hash;
int desc;
int argc = args ? RARRAY_LENINT(args) : 0;
- VALUE *argv = args ? RARRAY_PTR(args) : 0;
+ const VALUE *argv = args ? RARRAY_CONST_PTR(args) : 0;
NUM_STEP_SCAN_ARGS(argc, argv, to, step, hash, desc);