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/psych/psych_emitter.c | 2 +- ext/psych/psych_parser.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/psych') diff --git a/ext/psych/psych_emitter.c b/ext/psych/psych_emitter.c index 9b5204fd5f..3fc8170f6a 100644 --- a/ext/psych/psych_emitter.c +++ b/ext/psych/psych_emitter.c @@ -41,7 +41,7 @@ static size_t memsize(const void *ptr) static const rb_data_type_t psych_emitter_type = { "Psych/emitter", {0, dealloc, 0,}, - NULL, NULL, + 0, 0, RUBY_TYPED_FREE_IMMEDIATELY, }; diff --git a/ext/psych/psych_parser.c b/ext/psych/psych_parser.c index 7aad9213c4..6b72195625 100644 --- a/ext/psych/psych_parser.c +++ b/ext/psych/psych_parser.c @@ -61,7 +61,7 @@ static size_t memsize(const void *ptr) static const rb_data_type_t psych_parser_type = { "Psych/parser", {0, dealloc, 0,}, - NULL, NULL, + 0, 0, RUBY_TYPED_FREE_IMMEDIATELY, }; -- cgit v1.2.3