aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/bruisercapstone.h
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-03-02 20:40:16 +0000
committerbloodstalker <thabogre@gmail.com>2018-03-02 20:40:16 +0000
commit75fb62903425f19d0519c45a4c9ec7dc5f986f59 (patch)
tree0f748b8f446c803db9c4ee177d88ae2eba2a4b26 /bruiser/bruisercapstone.h
parentsome fixes for the jump table lua module (diff)
downloadmutator-75fb62903425f19d0519c45a4c9ec7dc5f986f59.tar.gz
mutator-75fb62903425f19d0519c45a4c9ec7dc5f986f59.zip
the skeletion code for the jump table struct is now working
Diffstat (limited to 'bruiser/bruisercapstone.h')
-rw-r--r--bruiser/bruisercapstone.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bruiser/bruisercapstone.h b/bruiser/bruisercapstone.h
index 13ed37f..6f9707e 100644
--- a/bruiser/bruisercapstone.h
+++ b/bruiser/bruisercapstone.h
@@ -33,7 +33,7 @@ extern "C" {
enum jmp_type {NONE=0, JMP=1, JNE=2, JE=3};
#define JMP_T enum jmp_type
-struct jmp_s_t {
+typedef struct jmp_s_t {
JMP_T type;
uint64_t location;
uint8_t size;