qemu_thread_join() takes only 1 arg

This commit is contained in:
Nguyen Anh Quynh
2016-04-23 10:17:04 +08:00
parent 3a742fb6f6
commit 72ba554738
3 changed files with 3 additions and 4 deletions

2
uc.c
View File

@ -578,7 +578,7 @@ uc_err uc_emu_start(uc_engine* uc, uint64_t begin, uint64_t until, uint64_t time
if (timeout) {
// wait for the timer to finish
qemu_thread_join(uc, &uc->timer);
qemu_thread_join(&uc->timer);
}
return uc->invalid_error;