aboutsummaryrefslogtreecommitdiffstats
path: root/ext/date/date_core.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/date_core.c')
-rw-r--r--ext/date/date_core.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/ext/date/date_core.c b/ext/date/date_core.c
index 9e4a4f22cc..e00748f9c2 100644
--- a/ext/date/date_core.c
+++ b/ext/date/date_core.c
@@ -6573,11 +6573,8 @@ static VALUE
mk_inspect(union DateData *x, VALUE klass, VALUE to_s)
{
return rb_enc_sprintf(rb_usascii_encoding(),
- "#<%"PRIsVALUE": %"PRIsVALUE" "
- "((%+"PRIsVALUE"j,%ds,%+"PRIsVALUE"n),%+ds,%.0fj)>",
- klass, to_s,
- m_real_jd(x), m_df(x), m_sf(x),
- m_of(x), m_sg(x));
+ "#<%"PRIsVALUE": %"PRIsVALUE">",
+ klass, to_s);
}
/*