From aacd7710462142df7397618ffff4279e495f10f9 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 13 May 2013 09:56:22 +0000 Subject: * *.c, parse.y, insns.def: use RARRAY_AREF/ASET macro instead of using RARRAY_PTR(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval_error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval_error.c') diff --git a/eval_error.c b/eval_error.c index c7ccf82a0a..3ad2915ccc 100644 --- a/eval_error.c +++ b/eval_error.c @@ -112,7 +112,7 @@ error_print(void) error_pos(); } else { - VALUE mesg = RARRAY_PTR(errat)[0]; + VALUE mesg = RARRAY_AREF(errat, 0); if (NIL_P(mesg)) error_pos(); -- cgit v1.2.3