correct an incorrect comment on default value of skipdata mnem: .db -> .byte. bug reported by Ben Nagy
This commit is contained in:
parent
721d07f6b2
commit
2c425fcbe2
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue