Skip to content

Commit

Permalink
Merge pull request #66 from zeenix/no-guid-in-address
Browse files Browse the repository at this point in the history
🔥 Don't print GUID in the address
  • Loading branch information
zeenix authored Mar 19, 2024
2 parents 28ff2f9 + 5faaf21 commit 8ceb07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/busd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async fn main() -> Result<()> {
}

if args.print_address {
println!("{},guid={}", bus.address(), bus.guid());
println!("{}", bus.address());
}

// FIXME: How to handle this gracefully on Windows?
Expand Down

0 comments on commit 8ceb07a

Please sign in to comment.