From e426ba78ee04af2720fd36cee9878e0a24f92bb6 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Tue, 25 Aug 2015 12:05:30 +0800 Subject: [PATCH] fix some warnings in regress/block_test.c --- regress/block_test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/regress/block_test.c b/regress/block_test.c index ce5180c9..9d74d199 100755 --- a/regress/block_test.c +++ b/regress/block_test.c @@ -6,7 +6,7 @@ #include -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; }