From 2c425fcbe2524f2bdd04d810e7a2fe13a59f9f2f Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Sun, 7 Sep 2014 09:46:54 +0800 Subject: [PATCH] correct an incorrect comment on default value of skipdata mnem: .db -> .byte. bug reported by Ben Nagy --- include/capstone.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/capstone.h b/include/capstone.h index e767995a..845791d4 100644 --- a/include/capstone.h +++ b/include/capstone.h @@ -141,7 +141,7 @@ typedef size_t (*cs_skipdata_cb_t)(const uint8_t *code, size_t code_size, size_t typedef struct cs_opt_skipdata { // Capstone considers data to skip as special "instructions". // User can specify the string for this instruction's "mnemonic" here. - // By default (if @mnemonic is NULL), Capstone use ".db". + // By default (if @mnemonic is NULL), Capstone use ".byte". const char *mnemonic; // User-defined callback function to be called when Capstone hits data.