about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-03-30 16:46:50 +0200
committerDominik Maier <domenukk@gmail.com>2020-04-01 13:10:06 +0200
commit1e290542bb77f35d1e7bb340077f1c28c0b03b81 (patch)
tree467783f7687347e64eac7e28715c67c5e1778eea /src
parent245304f5938a700e93a3403b30509dea55a6549e (diff)
downloadafl++-1e290542bb77f35d1e7bb340077f1c28c0b03b81.tar.gz
rebase
Diffstat (limited to 'src')
-rw-r--r--src/afl-fuzz-mutators.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-mutators.c b/src/afl-fuzz-mutators.c
index 754b2190..1a5528a2 100644
--- a/src/afl-fuzz-mutators.c
+++ b/src/afl-fuzz-mutators.c
@@ -193,8 +193,8 @@ void load_custom_mutator(afl_state_t *afl, const char *fn) {
 
   /* Initialize the custom mutator */
   if (afl->mutator->afl_custom_init)
-    afl->mutator->data =
-        afl->mutator->afl_custom_init(afl, rand_below(afl, 0xFFFFFFFF));
+    afl->mutator->data = afl->mutator->afl_custom_init(
+      afl, rand_below(afl, 0xFFFFFFFF));
 
 }