summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-30 06:26:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-30 06:26:49 +0000
commit6b540f54629acce0270f6309bfb23136f58e278f (patch)
treec8414377bb2ae897aa631966de72578d3d7430c7 /proc.c
parent76d58766b4f196bbd9205a6ef05cdc31d691dad9 (diff)
downloadruby-6b540f54629acce0270f6309bfb23136f58e278f.tar.gz
* inits.c (rb_vm_call_inits): let all InitVM functions use
ruby_vm_t instead of rb_vm_t. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/mvm@20396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proc.c b/proc.c
index 3be8484150..617199221c 100644
--- a/proc.c
+++ b/proc.c
@@ -1792,7 +1792,7 @@ Init_Proc(void)
}
void
-InitVM_Proc(rb_vm_t *vm)
+InitVM_Proc(ruby_vm_t *vm)
{
/* Proc */
rb_cProc = rb_define_class("Proc", rb_cObject);
@@ -1918,7 +1918,7 @@ Init_Binding(void)
}
void
-InitVM_Binding(rb_vm_t *vm)
+InitVM_Binding(ruby_vm_t *vm)
{
rb_cBinding = rb_define_class("Binding", rb_cObject);
rb_undef_alloc_func(rb_cBinding);