diff options
author | Dominik Maier <dmnk@google.com> | 2022-09-27 13:45:39 +0000 |
---|---|---|
committer | Dominik Maier <dmnk@google.com> | 2022-09-27 13:45:39 +0000 |
commit | 0f72a7473f994dad89340cca76e62545829ef493 (patch) | |
tree | f256e42dfff367926439dcbe65153746b6591080 | |
parent | 1ce0dcac3fc8580d549143dc0e8469264900bdce (diff) | |
download | afl++-0f72a7473f994dad89340cca76e62545829ef493.tar.gz |
Fix docs for fuzz_count in python
-rw-r--r-- | docs/custom_mutators.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/custom_mutators.md b/docs/custom_mutators.md index 6f3353ec..6b72430a 100644 --- a/docs/custom_mutators.md +++ b/docs/custom_mutators.md @@ -68,7 +68,7 @@ Python: def init(seed): pass -def fuzz_count(buf, add_buf, max_size): +def fuzz_count(buf): return cnt def fuzz(buf, add_buf, max_size): |