Skip to content

Commit

Permalink
bin: Fix clippy warning about return value
Browse files Browse the repository at this point in the history
  • Loading branch information
Granddave committed Jan 13, 2024
1 parent 7a504c1 commit 307e69c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bin/mos6502.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ enum Command {
pub fn trace() -> FlushGuard {
let (chrome_layer, _guard) = ChromeLayerBuilder::new().build();
tracing_subscriber::registry().with(chrome_layer).init();
return _guard;

_guard
}

fn main() -> Result<()> {
Expand Down

0 comments on commit 307e69c

Please sign in to comment.