summaryrefslogtreecommitdiffstats
path: root/vm_method.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-25 03:36:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-25 03:36:26 +0000
commit800cedc04255c50e47a116077dca2defa82b28f2 (patch)
tree25e9906341b01cfac857d67eaf11f6bebddefac1 /vm_method.c
parent74b780933421ae58eebbf762bc826015da440e0f (diff)
downloadruby-800cedc04255c50e47a116077dca2defa82b28f2.tar.gz
ruby-800cedc04255c50e47a116077dca2defa82b28f2.tar.xz
ruby-800cedc04255c50e47a116077dca2defa82b28f2.zip
* vm_method.c (check_definition): fixed typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_method.c b/vm_method.c
index 0db125bb1..f79568402 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -681,7 +681,7 @@ rb_mod_method_defined(VALUE mod, VALUE mid)
#define VISI_CHECK(x,f) (((x)&NOEX_MASK) == (f))
static VALUE
-check_definition(VALUE mod, VALUE mid, rb_method_flag_t noex)
+check_definition(VALUE mod, ID mid, rb_method_flag_t noex)
{
const rb_method_entry_t *me;
me = rb_method_entry(mod, mid);