Skip to content

Commit

Permalink
Updated output format
Browse files Browse the repository at this point in the history
  • Loading branch information
colin99d committed Mar 6, 2023
1 parent 6918c40 commit 98a0816
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const DENYLIST_CALLS: &[DLCall] = &[
DLCall::new(&[&["ssl", "_create_unverified_context"]], "Python allows using an insecure context via the _create_unverified_context that reverts to the previous behavior that does not validate certificates or perform hostname checks", Severity::Medium)
];

fn comp_small_norm(small: &SmallVec<[&str; 8]>, norm: &&[&str]) -> bool {
fn comp_small_norm(small: &SmallVec<[&str; 8]>, norm: &[&str]) -> bool {
if small.len() != norm.len() {
return false;
}
Expand Down

0 comments on commit 98a0816

Please sign in to comment.