From 41e9245e853c6d1f02a60f431afa87aeb7749787 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 27 Jun 2007 11:33:01 +0000 Subject: * compile.c (iseq_translate_direct_threaded_code): fix prototype function name. * vm.h: add correct cast. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index a710f760d9..4836118e2a 100644 --- a/compile.c +++ b/compile.c @@ -222,7 +222,7 @@ iseq_translate_direct_threaded_code(rb_iseq_t *iseq) #if OPT_DIRECT_THREADED_CODE void **table = (void **)vm_eval(0); #else - extern void **insns_address_table(); + extern void **get_insns_address_table(); void **table = get_insns_address_table(); #endif int i; -- cgit v1.2.3