Skip to content

Commit 4403cd0

Browse files
novafacingRowan Hart
andauthored
Fix mismatched_lifetime_syntaxes lint (#3363)
Co-authored-by: Rowan Hart <[email protected]>
1 parent a8a19ee commit 4403cd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/libafl_libfuzzer/runtime/src/options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ enum RawOption<'a> {
1111
Flag { name: &'a str, value: &'a str },
1212
}
1313

14-
fn parse_option(arg: &str) -> Option<RawOption> {
14+
fn parse_option(arg: &str) -> Option<RawOption<'_>> {
1515
if arg.starts_with("--") {
1616
None
1717
} else if arg.starts_with('-') {

0 commit comments

Comments
 (0)