about summary refs log tree commit diff
path: root/src/afl-fuzz-run.c
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2019-09-04 10:03:51 +0200
committerAndrea Fioraldi <andreafioraldi@gmail.com>2019-09-04 10:03:51 +0200
commite1f18f6212fdab581c3bf732a51dcc5a9cdaa8e7 (patch)
tree90b9797ca310168cf1be02959d1738df9650a3f6 /src/afl-fuzz-run.c
parent9705ccee677eb3009c6d06d1bff4d2b6cf80c4a7 (diff)
downloadafl++-e1f18f6212fdab581c3bf732a51dcc5a9cdaa8e7.tar.gz
fix typo in custom format
Diffstat (limited to 'src/afl-fuzz-run.c')
-rw-r--r--src/afl-fuzz-run.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c
index 9f4fafe4..3c3a1d37 100644
--- a/src/afl-fuzz-run.c
+++ b/src/afl-fuzz-run.c
@@ -3,7 +3,7 @@
    --------------------------------------------------------
 
    Originally written by Michal Zalewski <lcamtuf@google.com>
-   
+
    Now maintained by by Marc Heuse <mh@mh-sec.de>,
                         Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and
                         Andrea Fioraldi <andreafioraldi@gmail.com>
@@ -73,7 +73,7 @@ u8 run_target(char** argv, u32 timeout) {
 
         setrlimit(RLIMIT_DATA, &r);                        /* Ignore errors */
 
-#endif /* ^RLIMIT_AS */
+#endif                                                        /* ^RLIMIT_AS */
 
       }
 
@@ -210,7 +210,7 @@ u8 run_target(char** argv, u32 timeout) {
   classify_counts((u64*)trace_bits);
 #else
   classify_counts((u32*)trace_bits);
-#endif /* ^__x86_64__ */
+#endif                                                       /* ^__x86_64__ */
 
   prev_timed_out = child_timed_out;