summaryrefslogtreecommitdiff
path: root/src/arch/x86/processor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/processor.c')
-rw-r--r--src/arch/x86/processor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/processor.c b/src/arch/x86/processor.c
index 9187926..dfb2f12 100644
--- a/src/arch/x86/processor.c
+++ b/src/arch/x86/processor.c
@@ -168,8 +168,8 @@ asm_processor *create_x86_processor(void)
x86_register_instructions(result);
- ASM_PROCESSOR(result)->fetch_instr = (fetch_instruction)x86_fetch_instruction;
- ASM_PROCESSOR(result)->print_instr = (print_instruction)x86_print_instruction;
+ ASM_PROCESSOR(result)->fetch_instr = (fetch_instruction_)x86_fetch_instruction;
+ ASM_PROCESSOR(result)->print_instr = (print_instruction_)x86_print_instruction;
return ASM_PROCESSOR(result);