diff options
author | Your Name <you@example.com> | 2022-08-01 08:10:45 +0100 |
---|---|---|
committer | Your Name <you@example.com> | 2022-08-05 20:56:14 +0100 |
commit | e9cb939956557b1f10bbab289d965f84702962eb (patch) | |
tree | ca37d3ccbea5d3be29cbb43f04aaee04b158d4a8 /frida_mode/src/prefetch.c | |
parent | 7b6743f14ceb426e282900a9d5ee35b1ac820013 (diff) | |
download | afl++-e9cb939956557b1f10bbab289d965f84702962eb.tar.gz |
Fixes to formatting
Diffstat (limited to 'frida_mode/src/prefetch.c')
-rw-r--r-- | frida_mode/src/prefetch.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frida_mode/src/prefetch.c b/frida_mode/src/prefetch.c index b2c516f5..e20923c4 100644 --- a/frida_mode/src/prefetch.c +++ b/frida_mode/src/prefetch.c @@ -301,12 +301,13 @@ void prefetch_init(void) { * This doesn't work on Android, so we skip it. Would could end up leaking * shared memory regions though. */ - #ifndef __ANDROID__ +#ifndef __ANDROID__ if (shmctl(prefetch_shm_id, IPC_RMID, NULL) < 0) { FFATAL("shmctl (IPC_RMID) < 0 - errno: %d\n", errno); } + #endif /* Clear it, not sure it's necessary, just seems like good practice */ |