diff options
author | Koichi Sasada <ko1@atdot.net> | 2020-12-16 10:36:23 +0900 |
---|---|---|
committer | Koichi Sasada <ko1@atdot.net> | 2020-12-16 10:36:23 +0900 |
commit | 171f0431e766ba5b1a326386fff34a30f6cbc4c5 (patch) | |
tree | c46941e8f489b8603ba77c84cfa5b1ad92b3d307 /vm_insnhelper.c | |
parent | dff67c809f786c94933583a450dbd9398fa07039 (diff) | |
download | ruby-171f0431e766ba5b1a326386fff34a30f6cbc4c5.tar.gz |
fix typo
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r-- | vm_insnhelper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c index f0f0760839..d565b79f92 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -1725,7 +1725,7 @@ rb_vm_search_method_slowpath(const struct rb_callinfo *ci, VALUE klass) #endif static const struct rb_callcache * -vm_search_method_swlopath0(VALUE cd_owner, struct rb_call_data *cd, VALUE klass) +vm_search_method_slowpath0(VALUE cd_owner, struct rb_call_data *cd, VALUE klass) { #if USE_DEBUG_COUNTER const struct rb_callcache *old_cc = cd->cc; @@ -1794,7 +1794,7 @@ vm_search_method_fastpath(VALUE cd_owner, struct rb_call_data *cd, VALUE klass) } #endif - return vm_search_method_swlopath0(cd_owner, cd, klass); + return vm_search_method_slowpath0(cd_owner, cd, klass); } static const struct rb_callcache * |