about summary refs log tree commit diff
path: root/frida_mode/src/stats/stats_arm64.c
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-11-09 18:29:25 +0000
committerYour Name <you@example.com>2021-11-10 05:25:29 +0000
commit02e8919cbc744064510f6cd99539f7662343073f (patch)
tree9f9a8fc6346242b793ce7e671813168ccec72a8e /frida_mode/src/stats/stats_arm64.c
parent8578b6b01c5f41d8a75ae83cb2c058fe89bf90df (diff)
downloadafl++-02e8919cbc744064510f6cd99539f7662343073f.tar.gz
Suppress spurious output
Diffstat (limited to 'frida_mode/src/stats/stats_arm64.c')
-rw-r--r--frida_mode/src/stats/stats_arm64.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/frida_mode/src/stats/stats_arm64.c b/frida_mode/src/stats/stats_arm64.c
index 54b3faf1..313ab47a 100644
--- a/frida_mode/src/stats/stats_arm64.c
+++ b/frida_mode/src/stats/stats_arm64.c
@@ -3,8 +3,6 @@
 
 #include "frida-gumjs.h"
 
-#include "debug.h"
-
 #include "ranges.h"
 #include "stats.h"
 #include "util.h"
@@ -48,7 +46,7 @@ void starts_arch_init(void) {
 
   int shm_id = shmget(IPC_PRIVATE, sizeof(stats_data_arch_t),
                       IPC_CREAT | IPC_EXCL | 0600);
-  if (shm_id < 0) { FATAL("shm_id < 0 - errno: %d\n", errno); }
+  if (shm_id < 0) { FFATAL("shm_id < 0 - errno: %d\n", errno); }
 
   stats_data_arch = shmat(shm_id, NULL, 0);
   g_assert(stats_data_arch != MAP_FAILED);
@@ -58,7 +56,7 @@ void starts_arch_init(void) {
    */
   if (shmctl(shm_id, IPC_RMID, NULL) < 0) {
 
-    FATAL("shmctl (IPC_RMID) < 0 - errno: %d\n", errno);
+    FFATAL("shmctl (IPC_RMID) < 0 - errno: %d\n", errno);
 
   }