ksud: make clippy happy

This commit is contained in:
weishu
2025-02-05 16:15:10 +08:00
parent 29a27c37d1
commit 3d3bc5ce3c
2 changed files with 2 additions and 2 deletions

View File

@@ -167,7 +167,7 @@ enum PolicyStatement<'a> {
}
impl<'a> SeObjectParser<'a> for NormalPerm<'a> {
fn parse(input: &'a str) -> IResult<&str, Self> {
fn parse(input: &'a str) -> IResult<&'a str, Self> {
let (input, op) = alt((
tag("allow"),
tag("deny"),