Skip to content

Commit

Permalink
remove reference
Browse files Browse the repository at this point in the history
  • Loading branch information
janstarke committed Jul 30, 2024
1 parent 6d8c256 commit 6351ef7
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 6351ef7

Please sign in to comment.