diff options
| author | WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com> | 2021-04-29 08:06:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-29 09:06:14 +0200 |
| commit | 26b84e3521936ec11b7615bb833310d62795020e (patch) | |
| tree | 21e3d9b6fd35f684b170c9c14141874719c85d4a /frida_mode/src/main.c | |
| parent | aeb68835328d52722e21c62e4a124f486378897e (diff) | |
| download | afl++-26b84e3521936ec11b7615bb833310d62795020e.tar.gz | |
Fixes for aarch64, OSX and other minor issues (#891)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/src/main.c')
| -rw-r--r-- | frida_mode/src/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frida_mode/src/main.c b/frida_mode/src/main.c index 11cf041c..5c64d192 100644 --- a/frida_mode/src/main.c +++ b/frida_mode/src/main.c @@ -49,6 +49,10 @@ static int on_fork(void) { #ifdef __APPLE__ static void on_main_os(int argc, char **argv, char **envp) { + UNUSED_PARAMETER(argc); + UNUSED_PARAMETER(argv); + UNUSED_PARAMETER(envp); + } #else |
