From e63a9901412d465cd90143d658fda8fa938d7f8c Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 18 Apr 2002 08:46:18 +0000 Subject: * re.c (rb_reg_expr_str): should treat backslash specially in escaping. * io.c: complete off_t handling; missing argument for fptr_finalize(); polished rb_scan_args call. * dir.c: wrap multi-statment macro by do { } while (0) * eval.c, numeric,c, sprintf.c, util.c: ditto. * bignum.c (rb_big_eq): check `y == x' if y is neither Fixnum, Bignum, nor Float. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'array.c') diff --git a/array.c b/array.c index 18f08ce532..ff5ded0e5c 100644 --- a/array.c +++ b/array.c @@ -173,7 +173,7 @@ rb_ary_new3(n, va_alist) VALUE rb_ary_new4(n, elts) long n; - VALUE *elts; + const VALUE *elts; { VALUE ary; -- cgit v1.2.3