From 7f7cda6429b15b99d98cc0de7c2febc0eb991b1f Mon Sep 17 00:00:00 2001 From: Travis Finkenauer Date: Sun, 31 Mar 2019 22:52:47 -0400 Subject: [PATCH] Fix CS_ERR_X86_MASM doc typo (#1455) --- include/capstone/capstone.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/capstone/capstone.h b/include/capstone/capstone.h index 16003127..7f96e2d7 100644 --- a/include/capstone/capstone.h +++ b/include/capstone/capstone.h @@ -394,7 +394,7 @@ typedef enum cs_err { CS_ERR_SKIPDATA, ///< Access irrelevant data for "data" instruction in SKIPDATA mode CS_ERR_X86_ATT, ///< X86 AT&T syntax is unsupported (opt-out at compile time) CS_ERR_X86_INTEL, ///< X86 Intel syntax is unsupported (opt-out at compile time) - CS_ERR_X86_MASM, ///< X86 Intel syntax is unsupported (opt-out at compile time) + CS_ERR_X86_MASM, ///< X86 Masm syntax is unsupported (opt-out at compile time) } cs_err; /**