diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-12-01 06:38:04 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-12-01 06:38:04 +0000 |
commit | e580a631be59d4c7b8d415f4fba907746a72a0b5 (patch) | |
tree | 34f50da181d6fce7d75ed1286042b8fba32b03f4 /ext/-test-/marshal/usr | |
parent | 06bdfd0dfb4da17229e8e5d14e6ef739650043ed (diff) |
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
Diffstat (limited to 'ext/-test-/marshal/usr')
-rw-r--r-- | ext/-test-/marshal/usr/usrmarshal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/-test-/marshal/usr/usrmarshal.c b/ext/-test-/marshal/usr/usrmarshal.c index 056f0326c0..0c9e079af2 100644 --- a/ext/-test-/marshal/usr/usrmarshal.c +++ b/ext/-test-/marshal/usr/usrmarshal.c @@ -9,7 +9,7 @@ usr_size(const void *ptr) static const rb_data_type_t usrmarshal_type = { "UsrMarshal", {0, RUBY_DEFAULT_FREE, usr_size,}, - NULL, NULL, + 0, 0, RUBY_TYPED_FREE_IMMEDIATELY|RUBY_TYPED_WB_PROTECTED, }; |