target-i386: Correct unicorn macro

This commit is contained in:
Lioncash 2018-02-19 01:00:47 -05:00
parent 963b57c8de
commit b2a8355f8d
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -22,7 +22,7 @@
#define ARR_SIZE(a) (sizeof(a)/sizeof(a[0]))
#define READ_QWORD(x) ((uint64)x)
#define READ_QWORD(x) ((uint64_t)x)
#define READ_DWORD(x) (x & 0xffffffff)
#define READ_WORD(x) (x & 0xffff)
#define READ_BYTE_H(x) ((x & 0xffff) >> 8)