about summary refs log tree commit diff
path: root/src/afl-common.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-03-16 14:38:13 +0100
committervanhauser-thc <vh@thc.org>2021-03-16 14:38:13 +0100
commit862cb3217f5983e5cfff6568f6b31fcf1e960802 (patch)
tree846353204e04f44ea5b74ac5f6a11eb4fa9366a1 /src/afl-common.c
parent8e11546536979c8d462d927a61f28df5e909b2a0 (diff)
downloadafl++-862cb3217f5983e5cfff6568f6b31fcf1e960802.tar.gz
fix cmplog rtn
Diffstat (limited to 'src/afl-common.c')
-rw-r--r--src/afl-common.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/afl-common.c b/src/afl-common.c
index bfb05a67..27b63434 100644
--- a/src/afl-common.c
+++ b/src/afl-common.c
@@ -150,10 +150,12 @@ void argv_cpy_free(char **argv) {
 char **get_qemu_argv(u8 *own_loc, u8 **target_path_p, int argc, char **argv) {
 
   if (unlikely(getenv("AFL_QEMU_CUSTOM_BIN"))) {
+
     WARNF(
-      "AFL_QEMU_CUSTOM_BIN is enabled. "
-      "You must run your target under afl-qemu-trace on your own!");
+        "AFL_QEMU_CUSTOM_BIN is enabled. "
+        "You must run your target under afl-qemu-trace on your own!");
     return argv;
+
   }
 
   if (!unlikely(own_loc)) { FATAL("BUG: param own_loc is NULL"); }