From 4127179fe3d8914cc3f2865e4a5c4e4fae78b15e Mon Sep 17 00:00:00 2001 From: Nico01 Date: Sat, 7 Nov 2015 16:55:42 +0100 Subject: [PATCH] fix compilation with capstone next --- include/unicorn/m68k.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/unicorn/m68k.h b/include/unicorn/m68k.h index 36aa85a7..80350c13 100644 --- a/include/unicorn/m68k.h +++ b/include/unicorn/m68k.h @@ -16,7 +16,7 @@ extern "C" { #endif //> M68K registers -typedef enum m68k_reg { +typedef enum uc_m68k_reg { UC_M68K_REG_INVALID = 0, UC_M68K_REG_A0, @@ -41,7 +41,7 @@ typedef enum m68k_reg { UC_M68K_REG_PC, UC_M68K_REG_ENDING, // <-- mark the end of the list of registers -} m68k_reg; +} uc_m68k_reg; #ifdef __cplusplus }