diff options
author | Your Name <you@example.com> | 2022-10-11 18:15:51 +0100 |
---|---|---|
committer | Your Name <you@example.com> | 2022-10-11 18:15:51 +0100 |
commit | 7461c52278ff3a96ebc4d71d369d3a8b24fd19b1 (patch) | |
tree | 8b475c0772ec6603341aadc31e458d55cc601fbf /frida_mode/src/js/js.c | |
parent | fac6491ad0bbaee078352990eeb708d82aa412e3 (diff) | |
download | afl++-7461c52278ff3a96ebc4d71d369d3a8b24fd19b1.tar.gz |
Fixes for x64
Diffstat (limited to 'frida_mode/src/js/js.c')
-rw-r--r-- | frida_mode/src/js/js.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frida_mode/src/js/js.c b/frida_mode/src/js/js.c index 52b88d96..25187694 100644 --- a/frida_mode/src/js/js.c +++ b/frida_mode/src/js/js.c @@ -19,9 +19,11 @@ static GMainContext *context; static GMainLoop *main_loop; static void js_msg(const gchar *message, GBytes *data, gpointer user_data) { + UNUSED_PARAMETER(data); UNUSED_PARAMETER(user_data); FOKF("%s", message); + } void js_config(void) { |