1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

marshal.c: PRIsVALUE

* marshal.c (path2class, path2module): use PRIsVALUE.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-12-04 07:23:34 +00:00
parent dd2eb69457
commit cfa4a59da8
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,6 @@
Tue Dec 4 16:23:23 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
Tue Dec 4 16:23:32 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* marshal.c (path2class, path2module): use PRIsVALUE.
* marshal.c (w_object, marshal_dump, marshal_load): use
rb_check_funcall if possible.

View file

@ -1381,8 +1381,7 @@ path2class(VALUE path)
VALUE v = rb_path_to_class(path);
if (!RB_TYPE_P(v, T_CLASS)) {
rb_raise(rb_eArgError, "%.*s does not refer to class",
(int)RSTRING_LEN(path), RSTRING_PTR(path));
rb_raise(rb_eArgError, "%"PRIsVALUE" does not refer to class", path);
}
return v;
}
@ -1393,8 +1392,7 @@ path2module(VALUE path)
VALUE v = rb_path_to_class(path);
if (!RB_TYPE_P(v, T_MODULE)) {
rb_raise(rb_eArgError, "%.*s does not refer to module",
(int)RSTRING_LEN(path), RSTRING_PTR(path));
rb_raise(rb_eArgError, "%"PRIsVALUE" does not refer to module", path);
}
return v;
}