fix some warnings in regress/block_test.c

This commit is contained in:
Nguyen Anh Quynh 2015-08-25 12:05:30 +08:00
parent c7d08d77b5
commit e426ba78ee

View file

@ -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;
}