diff options
author | vanhauser-thc <vh@thc.org> | 2024-02-04 16:03:12 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-02-04 16:03:12 +0100 |
commit | c77709cdd9b50832ed537dfd65d30bc7ffa79e7b (patch) | |
tree | 9b1cf5379c7c8080787a3b6bd10c46f3e4909d05 /src/afl-fuzz.c | |
parent | 27338fcef121c7700a1e2e99cb31cb7106159293 (diff) | |
download | afl++-c77709cdd9b50832ed537dfd65d30bc7ffa79e7b.tar.gz |
add U256/32byte support
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index b556b4b6..34268113 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -956,9 +956,11 @@ int main(int argc, char **argv_orig, char **envp) { break; case 'd': - case 'D': /* old deterministic */ + case 'D': /* old deterministic */ - WARNF("Parameters -d and -D are deprecated, a new enhanced deterministic fuzzing is active by default, to disable it use -z"); + WARNF( + "Parameters -d and -D are deprecated, a new enhanced deterministic " + "fuzzing is active by default, to disable it use -z"); break; case 'z': /* no deterministic */ |