diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-01 10:36:22 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-01 10:36:22 +0000 |
commit | bf903214d5523f0a64e4a7ae123242875b06c34d (patch) | |
tree | 5c657837a8251a81ffe019b1bfac2e6bf8bcc986 /variable.c | |
parent | 5b7dfb7c131627728aee5871bb1a029ab5918b9b (diff) | |
download | ruby-bf903214d5523f0a64e4a7ae123242875b06c34d.tar.gz |
* ext/digest/digest.c (rb_digest_instance_inspect): constified.
* variable.c (rb_path2class): field precision should have type int.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r-- | variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c index b5049afae7..476220aa4b 100644 --- a/variable.c +++ b/variable.c @@ -245,7 +245,7 @@ rb_path2class(const char *path) } if (!rb_const_defined(c, id)) { undefined_class: - rb_raise(rb_eArgError, "undefined class/module %.*s", p-path, path); + rb_raise(rb_eArgError, "undefined class/module %.*s", (int)(p-path), path); } c = rb_const_get_at(c, id); switch (TYPE(c)) { |