diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2022-01-26 21:45:30 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2022-01-26 21:45:30 +0100 |
commit | aa5f59b50196360e4d68178064120100c8ece4dd (patch) | |
tree | 2001b9dbbf3bfb08bc0f81a10b02a4d7c22f02a9 /custom_mutators/rust | |
parent | 08c39c15522fc1765ab6fcff03a02bb5f9d4f230 (diff) | |
download | afl++-aa5f59b50196360e4d68178064120100c8ece4dd.tar.gz |
libafl_base custom mutator
Diffstat (limited to 'custom_mutators/rust')
-rw-r--r-- | custom_mutators/rust/custom_mutator/src/lib.rs | 4 |
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. |