about summary refs log tree commit diff
path: root/custom_mutators/rust
diff options
context:
space:
mode:
Diffstat (limited to 'custom_mutators/rust')
-rw-r--r--custom_mutators/rust/custom_mutator/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/custom_mutators/rust/custom_mutator/src/lib.rs b/custom_mutators/rust/custom_mutator/src/lib.rs
index 83ecbd9a..f872241e 100644
--- a/custom_mutators/rust/custom_mutator/src/lib.rs
+++ b/custom_mutators/rust/custom_mutator/src/lib.rs
@@ -370,7 +370,7 @@ macro_rules! _define_afl_custom_init {
         ) -> *const ::std::os::raw::c_void {
             $crate::wrappers::afl_custom_init_::<$mutator_type>(afl, seed as u32)
         }
-    }
+    };
 }
 
 /// An exported macro to defined afl_custom_init meant for insternal usage
@@ -385,7 +385,7 @@ macro_rules! _define_afl_custom_init {
         ) -> *const ::std::os::raw::c_void {
             $crate::wrappers::afl_custom_init_::<$mutator_type>(seed as u32)
         }
-    }
+    };
 }
 
 /// exports the given Mutator as a custom mutator as the C interface that AFL++ expects.