From 903fb04f298884c057cb8aa21872d9f76dcfbe92 Mon Sep 17 00:00:00 2001 From: Adrian Herrera Date: Tue, 22 Mar 2016 23:09:38 +1100 Subject: [PATCH] Another typo --- samples/sample_x86.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/sample_x86.c b/samples/sample_x86.c index bc290de4..7b4fc120 100644 --- a/samples/sample_x86.c +++ b/samples/sample_x86.c @@ -850,7 +850,7 @@ static void test_x86_16(void) uc_mem_map(uc, 0, 8 * 1024, UC_PROT_ALL); // write machine code to be emulated to memory - if (uc_mem_write(uc, 0, X86_CODE16, sizeof(X86_CODE64) - 1)) { + if (uc_mem_write(uc, 0, X86_CODE16, sizeof(X86_CODE16) - 1)) { printf("Failed to write emulation code to memory, quit!\n"); return; }