Skip to content

Commit

Permalink
fix export alignement
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Sep 11, 2024
1 parent 1b59ccb commit e706eab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion oryx-tui/src/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ pub fn export(packets: &[AppPacket]) -> AppResult<()> {
writeln!(
file,
"{:39} {:^11} {:39} {:^11} ARP",
p.src_mac, "-", p.dst_mac, "-"
p.src_mac.to_string(),
"-",
p.dst_mac.to_string(),
"-"
)?;
}
AppPacket::Ip(packet) => match packet {
Expand Down

0 comments on commit e706eab

Please sign in to comment.