Skip to content

Commit fcf3b18

Browse files
authored
Merge pull request #84 from Xiretza/absolute-crate-path
Use absolute path to fuzz_target! macro in macro recursion
2 parents a89115a + fd836d6 commit fcf3b18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ macro_rules! fuzz_target {
158158
};
159159

160160
(|$data:ident: &[u8]| $body:block) => {
161-
fuzz_target!(|$data| $body);
161+
$crate::fuzz_target!(|$data| $body);
162162
};
163163

164164
(|$data:ident: $dty: ty| $body:block) => {

0 commit comments

Comments
 (0)