From c8a3b31bb14c5c69a381749c998cffa871d9d942 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 15 Mar 2017 12:41:56 +0000 Subject: [PATCH] vm_insnhelper.c: adjust indent [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_insnhelper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm_insnhelper.c b/vm_insnhelper.c index d735caeb9f..a991e59562 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -895,7 +895,7 @@ vm_getivar(VALUE obj, ID id, IC ic, struct rb_call_cache *cc, int is_attr) undef_check: if (UNLIKELY(val == Qundef)) { if (!is_attr && RTEST(ruby_verbose)) - rb_warning("instance variable %"PRIsVALUE" not initialized", QUOTE_ID(id)); + rb_warning("instance variable %"PRIsVALUE" not initialized", QUOTE_ID(id)); val = Qnil; } RB_DEBUG_COUNTER_INC(ivar_get_ic_hit);