diff options
author | Your Name <you@example.com> | 2021-12-23 22:39:43 +0000 |
---|---|---|
committer | jon <jon@odroid.lan> | 2021-12-23 22:39:43 +0000 |
commit | edeaf72ea8c83843c68b93ab6b319c202d4ab1ce (patch) | |
tree | 59e7920697244d9b4f154630ec9f665b0c1423a5 /frida_mode/src/instrument/instrument_debug.c | |
parent | c76dc73c7abba17ace61f703199946fe4cee162f (diff) | |
download | afl++-edeaf72ea8c83843c68b93ab6b319c202d4ab1ce.tar.gz |
Fix compiler warnings
Diffstat (limited to 'frida_mode/src/instrument/instrument_debug.c')
-rw-r--r-- | frida_mode/src/instrument/instrument_debug.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frida_mode/src/instrument/instrument_debug.c b/frida_mode/src/instrument/instrument_debug.c index a1f80467..592ab673 100644 --- a/frida_mode/src/instrument/instrument_debug.c +++ b/frida_mode/src/instrument/instrument_debug.c @@ -35,6 +35,10 @@ static void instrument_debug(char *format, ...) { static void instrument_disasm(guint8 *start, guint8 *end, GumStalkerOutput *output) { +#if !defined(__arm__) + UNUSED_PARAMETER(output); +#endif + csh capstone; cs_err err; cs_mode mode; |