summaryrefslogtreecommitdiffhomepage
path: root/src/object.c
diff options
context:
space:
mode:
authorHiroshi Mimaki <[email protected]>2019-10-23 15:44:21 +0900
committerHiroshi Mimaki <[email protected]>2019-10-23 15:44:21 +0900
commit4eb8fca14008222ad3f835c29678fa11ad2c06b5 (patch)
treefd05103a2e73accd33f28c4c48721f9a06b1cc59 /src/object.c
parent4c91adc4b209163f4609e308bf773c6833513b55 (diff)
parentfa85f91e0e3ebff7b2626bfcf550821445c064d7 (diff)
downloadmruby-4eb8fca14008222ad3f835c29678fa11ad2c06b5.tar.gz
mruby-4eb8fca14008222ad3f835c29678fa11ad2c06b5.zip
Merge branch 'master' into stable
Diffstat (limited to 'src/object.c')
-rw-r--r--src/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object.c b/src/object.c
index 4e2ba7154..33d570331 100644
--- a/src/object.c
+++ b/src/object.c
@@ -423,7 +423,7 @@ mrb_any_to_s(mrb_state *mrb, mrb_value obj)
mrb_str_cat_cstr(mrb, str, cname);
if (!mrb_immediate_p(obj)) {
mrb_str_cat_lit(mrb, str, ":");
- mrb_str_concat(mrb, str, mrb_ptr_to_str(mrb, mrb_ptr(obj)));
+ mrb_str_cat_str(mrb, str, mrb_ptr_to_str(mrb, mrb_ptr(obj)));
}
mrb_str_cat_lit(mrb, str, ">");