about summary refs log tree commit diff
path: root/src/afl-analyze.c
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-03-31 04:51:38 +0200
committerDominik Maier <domenukk@gmail.com>2020-04-01 13:10:07 +0200
commitb83a2c1a00f6c9e45d6803e2b54dc3a82ffa49fc (patch)
tree153a09f29eb510e277536143a67188a7569ef370 /src/afl-analyze.c
parent5a4d4ad7360875fea9efb330a55afe4771e1a428 (diff)
downloadafl++-b83a2c1a00f6c9e45d6803e2b54dc3a82ffa49fc.tar.gz
make travis happy
Diffstat (limited to 'src/afl-analyze.c')
-rw-r--r--src/afl-analyze.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/afl-analyze.c b/src/afl-analyze.c
index d509c43e..473a257d 100644
--- a/src/afl-analyze.c
+++ b/src/afl-analyze.c
@@ -60,10 +60,9 @@ static s32 child_pid;                  /* PID of the tested program         */
 u8 *trace_bits;                        /* SHM with instrumentation bitmap   */
 
 static u8 *in_file,                    /* Analyzer input test case          */
-    *prog_in,                          /* Targeted program input file       */
-    *doc_path;                         /* Path to docs                      */
+    *prog_in;                          /* Targeted program input file       */
 
-static u8 *in_data;                    /* Input data for analysis           */
+    static u8 *in_data;                /* Input data for analysis           */
 
 static u32 in_len,                     /* Input data length                 */
     orig_cksum,                        /* Original checksum                 */
@@ -77,7 +76,7 @@ static s32 dev_null_fd = -1;           /* FD to /dev/null                   */
 
 u8 edges_only,                         /* Ignore hit counts?                */
     use_hex_offsets,                   /* Show hex offsets?                 */
-    be_quiet, use_stdin = 1;           /* Use stdin for program input?      */
+    use_stdin = 1;                     /* Use stdin for program input?      */
 
 static volatile u8 stop_soon,          /* Ctrl-C pressed?                   */
     child_timed_out;                   /* Child timed out?                  */