diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-06-15 06:26:51 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-06-15 06:26:51 +0000 |
commit | 63be9ed5c067674cdbf9a72fb8bad68c8d808842 (patch) | |
tree | 560e422a361d9d4b724037d7aceadd4b2b58c17e /ext/date/date_core.c | |
parent | 4060211c96f5d54b551fed536779a79821d1628e (diff) |
date_core.c: missing argument
* ext/date/date_core.c (d_lite_initialize): fix missing argument
for write-barrier.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55420 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/date/date_core.c')
-rw-r--r-- | ext/date/date_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/date_core.c b/ext/date/date_core.c index b99f947920..caf2b936d8 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -4752,7 +4752,7 @@ d_lite_initialize(int argc, VALUE *argv, VALUE self) rb_raise(rb_eArgError, "cannot load complex into simple"); - set_to_complex(&dat->c, nth, rjd, df, sf, of, sg, + set_to_complex(self, &dat->c, nth, rjd, df, sf, of, sg, 0, 0, 0, 0, 0, 0, HAVE_JD | HAVE_DF | COMPLEX_DAT); } } |