Skip to content

Commit

Permalink
bin: Remove _ from used variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Granddave committed Jan 22, 2024
1 parent 54cf1b6 commit ef0075a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ enum Command {
}

pub fn trace() -> FlushGuard {
let (chrome_layer, _guard) = ChromeLayerBuilder::new().build();
let (chrome_layer, guard) = ChromeLayerBuilder::new().build();
tracing_subscriber::registry().with(chrome_layer).init();

_guard
guard
}

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

0 comments on commit ef0075a

Please sign in to comment.