diff options
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r-- | src/afl-showmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index 26f166a5..771fa733 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -899,11 +899,11 @@ int main(int argc, char** argv, char** envp) { if (in_dir) { if (at_file) PFATAL("Options -A and -i are mutually exclusive"); - detect_file_args(argv + optind, "", fsrv->use_stdin); + detect_file_args(argv + optind, "", &fsrv->use_stdin); } else { - detect_file_args(argv + optind, at_file, fsrv->use_stdin); + detect_file_args(argv + optind, at_file, &fsrv->use_stdin); } |