fix some compiler warnings

This commit is contained in:
Nguyen Anh Quynh
2024-04-22 20:03:07 +08:00
parent ef34d92b2f
commit c136b6b2bf
2 changed files with 2 additions and 4 deletions

View File

@@ -967,6 +967,6 @@ uint32_t HELPER(uc_hooksys64)(CPUARMState *env, uint32_t insn, void *hk)
}
uint32_t ret;
JIT_CALLBACK_GUARD_VAR(ret, ((uc_cb_insn_sys_t)(hook->callback))(env->uc, uc_rt, &cp_reg, hook->user_data));
JIT_CALLBACK_GUARD_VAR(ret, ((uc_cb_insn_sys_t)(hook->callback))(uc, uc_rt, &cp_reg, hook->user_data));
return ret;
}
}