about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-02-03 17:26:54 +0100
committervan Hauser <vh@thc.org>2020-02-03 17:26:54 +0100
commit56bc55428febaaa66ff961f936d3e20a60b224f2 (patch)
tree7558739bf1e784a7c0f91f36bd19b534f9f6a8e5 /src
parentef56122888277dfe58a0b11bc3895058812967ad (diff)
downloadafl++-56bc55428febaaa66ff961f936d3e20a60b224f2.tar.gz
make travis happy
Diffstat (limited to 'src')
-rw-r--r--src/afl-showmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c
index 31fbcb5f..0aa5c158 100644
--- a/src/afl-showmap.c
+++ b/src/afl-showmap.c
@@ -709,7 +709,7 @@ static void find_binary(u8* fname) {
 
 int main(int argc, char** argv) {
 
-  s32    opt;
+  s32    opt, i;
   u8     mem_limit_given = 0, timeout_given = 0, unicorn_mode = 0, use_wine = 0;
   u32    tcnt = 0;
   char** use_argv;
@@ -896,7 +896,7 @@ int main(int argc, char** argv) {
 
   detect_file_args(argv + optind, at_file);
   
-  for (int i = optind; i < argc; i++)
+  for (i = optind; i < argc; i++)
     if (strcmp(argv[i], "@@") == 0)
       arg_offset = i;