Fix endianess in test_ctl

This commit is contained in:
mio 2022-10-27 22:52:25 +02:00
parent fb8fb1ca7a
commit e01556557e
No known key found for this signature in database
GPG Key ID: DFF27E34A47CB873
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,8 @@ static inline int64_t get_clock_realtime(void)
#endif #endif
const uint64_t code_start = 0x1000; const uint64_t code_start = LEINT64(0x1000);
const uint64_t code_len = 0x4000; const uint64_t code_len = LEINT64(0x4000);
static void uc_common_setup(uc_engine **uc, uc_arch arch, uc_mode mode, static void uc_common_setup(uc_engine **uc, uc_arch arch, uc_mode mode,
const char *code, uint64_t size) const char *code, uint64_t size)