提交 ac2567b5 编写于 作者: B bellard

fixed invalid cast


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3597 c046a42c-6fe2-441c-8c8c-71466251a162
上级 c16f9ed3
......@@ -129,7 +129,7 @@ void do_m68k_simcall(CPUM68KState *env, int nr)
{
int32_t ret;
ret = do_brk((void *)ARG(0));
ret = do_brk((abi_ulong)ARG(0));
if (ret == -ENOMEM)
ret = -1;
check_err(env, ret);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册