mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 05:48:11 +00:00
fix some warnings in regress/block_test.c
This commit is contained in:
parent
c7d08d77b5
commit
e426ba78ee
1 changed files with 3 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include <unicorn/unicorn.h>
|
||||
|
||||
static count = 1;
|
||||
static int count = 1;
|
||||
|
||||
// Callback function for tracing code (UC_HOOK_CODE & UC_HOOK_BLOCK)
|
||||
// @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 - Done", count++);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue