mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-07-08 21:30:43 +00:00
fix some warnings in regress/block_test.c
This commit is contained in:
parent
c7d08d77b5
commit
e426ba78ee
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
#include <unicorn/unicorn.h>
|
#include <unicorn/unicorn.h>
|
||||||
|
|
||||||
static count = 1;
|
static int count = 1;
|
||||||
|
|
||||||
// Callback function for tracing code (UC_HOOK_CODE & UC_HOOK_BLOCK)
|
// Callback function for tracing code (UC_HOOK_CODE & UC_HOOK_BLOCK)
|
||||||
// @address: address where the code is being executed
|
// @address: address where the code is being executed
|
||||||
|
@ -79,4 +79,6 @@ int main() {
|
||||||
fprintf(stderr, "ok %d - uc_emu_start\n", count++);
|
fprintf(stderr, "ok %d - uc_emu_start\n", count++);
|
||||||
|
|
||||||
fprintf(stderr, "ok %d - Done", count++);
|
fprintf(stderr, "ok %d - Done", count++);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue