diff options
author | vanhauser-thc <vh@thc.org> | 2024-08-19 16:25:32 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-08-19 16:25:32 +0200 |
commit | 1689a8e053c1f73e16331bfeda28c79e1ed4bbd0 (patch) | |
tree | 8e1dbb1b8454c470aa5e0093f6d89c5cc86e9200 /utils/qemu_persistent_hook/read_into_rdi.c | |
parent | 6edc3b51ba81d577eeb4a64299916c1eaadfdd70 (diff) | |
download | afl++-1689a8e053c1f73e16331bfeda28c79e1ed4bbd0.tar.gz |
code format, llvm 18
Diffstat (limited to 'utils/qemu_persistent_hook/read_into_rdi.c')
-rw-r--r-- | utils/qemu_persistent_hook/read_into_rdi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/qemu_persistent_hook/read_into_rdi.c b/utils/qemu_persistent_hook/read_into_rdi.c index 14b2ed85..3e913870 100644 --- a/utils/qemu_persistent_hook/read_into_rdi.c +++ b/utils/qemu_persistent_hook/read_into_rdi.c @@ -4,7 +4,7 @@ #include <string.h> #define g2h(x) ((void *)((unsigned long)(x) + guest_base)) -#define h2g(x) ((uint64_t)(x)-guest_base) +#define h2g(x) ((uint64_t)(x) - guest_base) void afl_persistent_hook(struct x86_64_regs *regs, uint64_t guest_base, uint8_t *input_buf, uint32_t input_buf_len) { |