From 62f03f6658e3d43ee22266221751ffd75f3e9f0c Mon Sep 17 00:00:00 2001 From: paladin-t Date: Tue, 15 Dec 2015 17:46:07 +0800 Subject: [PATCH] -avoided compilers'complain. --- core/my_basic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/my_basic.c b/core/my_basic.c index b1c611d..a8484c9 100755 --- a/core/my_basic.c +++ b/core/my_basic.c @@ -3087,7 +3087,7 @@ int _eval_native_routine(mb_interpreter_t* s, _ls_node_t** l, mb_value_t* va, un _handle_error_on_obj(s, SE_RN_INVALID_ROUTINE, 0, TON(l), MB_FUNC_ERR, _exit, result); } - result = entry(s, l, va, ca, r, has_arg, pop_arg); + result = entry(s, (void**)l, va, ca, r, has_arg, pop_arg); _exit: s->last_routine = lastr;