about summary refs log tree commit diff
path: root/frida_mode/hook/frida_hook.c
diff options
context:
space:
mode:
Diffstat (limited to 'frida_mode/hook/frida_hook.c')
-rw-r--r--frida_mode/hook/frida_hook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/hook/frida_hook.c b/frida_mode/hook/frida_hook.c
index 3bfdb207..86c6f9d4 100644
--- a/frida_mode/hook/frida_hook.c
+++ b/frida_mode/hook/frida_hook.c
@@ -31,7 +31,7 @@ __attribute__((visibility("default"))) void afl_persistent_hook(
   // do a length check matching the target!
 
   void **esp = (void **)regs->esp;
-  void * arg1 = esp[0];
+  void  *arg1 = esp[0];
   void **arg2 = &esp[1];
   memcpy(arg1, input_buf, input_buf_len);
   *arg2 = (void *)input_buf_len;