From bcaff64b3bfce90c483db31fa1a8bca4c7ac797e Mon Sep 17 00:00:00 2001 From: junchao Date: Thu, 6 Aug 2020 09:08:02 +0800 Subject: [PATCH] fix CS_ mips_ OP structure comment error --- include/capstone/mips.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/capstone/mips.h b/include/capstone/mips.h index f10c303329..339445611c 100644 --- a/include/capstone/mips.h +++ b/include/capstone/mips.h @@ -240,7 +240,7 @@ typedef struct mips_op_mem { typedef struct cs_mips_op { mips_op_type type; ///< operand type union { - mips_reg reg; ///< register value for REG operand + mips_reg reg; ///< register id for REG operand int64_t imm; ///< immediate value for IMM operand mips_op_mem mem; ///< base/index/scale/disp value for MEM operand };