* fix type warnings.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-11-11 12:30:39 +00:00
parent a5eb40b999
commit 8a7aad9952
8 changed files with 23 additions and 25 deletions

View file

@ -114,7 +114,7 @@ rb_syck_compile(VALUE self, VALUE port)
syck_parser_taguri_expansion( parser, 0 );
oid = syck_parse( parser );
if (!syck_lookup_sym( parser, oid, &data )) {
rb_raise(rb_eSyntaxError, "root node <%lx> not found", oid);
rb_raise(rb_eSyntaxError, "root node <%p> not found", (void *)oid);
}
sav = data;