From e580a631be59d4c7b8d415f4fba907746a72a0b5 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 1 Dec 2014 06:38:04 +0000 Subject: use 0 for reserved use 0 for rb_data_type_t::reserved instead of NULL, since its type may be changed in the future and possibly not a pointer type. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/date/date_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/date/date_core.c') diff --git a/ext/date/date_core.c b/ext/date/date_core.c index 9ef5160b19..07b65a7ed4 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -2947,7 +2947,7 @@ d_lite_memsize(const void *ptr) static const rb_data_type_t d_lite_type = { "Date", {d_lite_gc_mark, RUBY_TYPED_DEFAULT_FREE, d_lite_memsize,}, - NULL, NULL, + 0, 0, RUBY_TYPED_FREE_IMMEDIATELY|RUBY_TYPED_WB_PROTECTED, }; -- cgit v1.2.3