Commit 0751faf4 authored by kano4's avatar kano4

Fix indent in string.c

parent d41e13e2
......@@ -1404,10 +1404,10 @@ mrb_str_index_m(mrb_state *mrb, mrb_value str)
case MRB_TT_STRING:
pos = mrb_str_index(mrb, str, sub, pos);
break;
}
}
if (pos == -1) return mrb_nil_value();
return mrb_fixnum_value(pos);
if (pos == -1) return mrb_nil_value();
return mrb_fixnum_value(pos);
}
#define STR_REPLACE_SHARED_MIN 10
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment