aboutsummaryrefslogtreecommitdiffstats
path: root/ext/bigdecimal/bigdecimal.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bigdecimal/bigdecimal.c')
-rw-r--r--ext/bigdecimal/bigdecimal.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c
index 151a68cea6..86070af3cb 100644
--- a/ext/bigdecimal/bigdecimal.c
+++ b/ext/bigdecimal/bigdecimal.c
@@ -182,14 +182,13 @@ cannot_be_coerced_into_BigDecimal(VALUE exc_class, VALUE v)
VALUE str;
if (rb_special_const_p(v)) {
- str = rb_str_cat2(rb_str_dup(rb_inspect(v)),
- " can't be coerced into BigDecimal");
+ str = rb_inspect(v);
}
else {
- str = rb_str_cat2(rb_str_dup(rb_class_name(rb_obj_class(v))),
- " can't be coerced into BigDecimal");
+ str = rb_class_name(rb_obj_class(v));
}
+ str = rb_str_cat2(rb_str_dup(str), " can't be coerced into BigDecimal");
rb_exc_raise(rb_exc_new3(exc_class, str));
}