diff options
| author | Your Name <you@example.com> | 2021-11-09 18:29:25 +0000 |
|---|---|---|
| committer | Your Name <you@example.com> | 2021-11-10 05:25:29 +0000 |
| commit | 02e8919cbc744064510f6cd99539f7662343073f (patch) | |
| tree | 9f9a8fc6346242b793ce7e671813168ccec72a8e /frida_mode/src/seccomp/seccomp_atomic.c | |
| parent | 8578b6b01c5f41d8a75ae83cb2c058fe89bf90df (diff) | |
| download | afl++-02e8919cbc744064510f6cd99539f7662343073f.tar.gz | |
Suppress spurious output
Diffstat (limited to 'frida_mode/src/seccomp/seccomp_atomic.c')
| -rw-r--r-- | frida_mode/src/seccomp/seccomp_atomic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frida_mode/src/seccomp/seccomp_atomic.c b/frida_mode/src/seccomp/seccomp_atomic.c index c2042f97..18cb6724 100644 --- a/frida_mode/src/seccomp/seccomp_atomic.c +++ b/frida_mode/src/seccomp/seccomp_atomic.c @@ -3,13 +3,13 @@ #include <stdbool.h> #include <stdio.h> - #include "debug.h" + #include "util.h" void seccomp_atomic_set(volatile bool *ptr, bool val) { if (!__sync_bool_compare_and_swap(ptr, !val, val)) { - FATAL("Failed to set event"); + FFATAL("Failed to set event"); } |
