mrb_str_cat2: deprecated since 0cedf8f

This commit is contained in:
cremno
2014-02-13 13:45:28 +01:00
parent 7a32c7b183
commit 8bbc2c107b
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -595,7 +595,7 @@ mrb_obj_iv_inspect(mrb_state *mrb, struct RObject *obj)
mrb_value str = mrb_str_buf_new(mrb, 30);
mrb_str_buf_cat(mrb, str, "-<", 2);
mrb_str_cat2(mrb, str, cn);
mrb_str_cat_cstr(mrb, str, cn);
mrb_str_cat(mrb, str, ":", 1);
mrb_str_concat(mrb, str, mrb_ptr_to_str(mrb, obj));