* expand tabs.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
svn 2018-10-29 18:00:14 +00:00
parent d3edfdc7d9
commit 708142cabd
3 changed files with 7 additions and 7 deletions

View file

@ -156,7 +156,7 @@ struct_member_pos(VALUE s, VALUE name)
mask, RSTRUCT_LEN(s));
}
for (j = 0; j < mask; j++) {
if (RARRAY_AREF(back, j) == name)
if (RARRAY_AREF(back, j) == name)
return (int)j;
}
return -1;
@ -172,8 +172,8 @@ struct_member_pos(VALUE s, VALUE name)
for (;;) {
VALUE e = RARRAY_AREF(back, j);
if (e == name)
return FIX2INT(RARRAY_AREF(back, j + 1));
if (e == name)
return FIX2INT(RARRAY_AREF(back, j + 1));
if (!RTEST(e)) {
return -1;
}