summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-14 22:25:25 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-14 22:25:25 +0000
commit2e37c7fe2f8024b16382c8f709a07ad22cf329f5 (patch)
treea34d1efb5c0035ba063794876740a6f98f66c2b2 /object.c
parent4fbaa3aedc8a4a3e8f0fe74061a939062d48c0ce (diff)
* object.c (rb_to_integer): argument constified.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/object.c b/object.c
index b87a1d3a90..2654bd198f 100644
--- a/object.c
+++ b/object.c
@@ -2165,7 +2165,7 @@ rb_check_convert_type(val, type, tname, method)
static VALUE
rb_to_integer(val, method)
VALUE val;
- char *method;
+ const char *method;
{
VALUE v = convert_type(val, "Integer", method, Qtrue);
if (!rb_obj_is_kind_of(v, rb_cInteger)) {