Skip to content

Commit

Permalink
Merge pull request #63 from dfir-dd/62-fix-code-scanning-alert-the-bo…
Browse files Browse the repository at this point in the history
…rrowed-expression-implements-the-required-traits

remove reference
  • Loading branch information
Bitbee0 authored Jul 31, 2024
2 parents 319b885 + 6351ef7 commit bdb89c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bin/evtxanalyze/sessions/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl Session {
where
W: Write,
{
writer.serialize(&Into::<SessionAsCsv>::into(self))
writer.serialize(Into::<SessionAsCsv>::into(self))
}

pub fn is_anonymous(&self) -> bool {
Expand Down
2 changes: 1 addition & 1 deletion src/bin/evtxanalyze/sessions/session_event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl SessionEvent {
where
W: Write,
{
writer.serialize(&Into::<EventAsCsv>::into(self))
writer.serialize(Into::<EventAsCsv>::into(self))
}
}

Expand Down

0 comments on commit bdb89c8

Please sign in to comment.