From 76ed117df65bba075d416d7dac5d574e9e23a3fc Mon Sep 17 00:00:00 2001 From: practicalswift Date: Sun, 15 Nov 2015 18:12:10 +0100 Subject: [PATCH] =?UTF-8?q?Cast=20last=20two=20uc=5Fhook=5Fadd(=E2=80=A6)?= =?UTF-8?q?=20arguments=20to=20uint64=5Ft.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/regress/invalid_read_in_cpu_tb_exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regress/invalid_read_in_cpu_tb_exec.c b/tests/regress/invalid_read_in_cpu_tb_exec.c index c05fc5b7..808f89bf 100644 --- a/tests/regress/invalid_read_in_cpu_tb_exec.c +++ b/tests/regress/invalid_read_in_cpu_tb_exec.c @@ -25,7 +25,7 @@ int main(int argc, char **argv, char **envp) { return 1; } uc_hook hook; - uc_hook_add(uc, &hook, UC_HOOK_BLOCK, hook_block, NULL, 1, 0); + uc_hook_add(uc, &hook, UC_HOOK_BLOCK, hook_block, NULL, (uint64_t)1, (uint64_t)0); printf("uc_emu_start(…)\n"); uc_emu_start(uc, STARTING_ADDRESS, STARTING_ADDRESS + sizeof(BINARY) - 1, 0, 0); printf("done\n");