Skip to content

Commit

Permalink
semicolons, my nemesis
Browse files Browse the repository at this point in the history
  • Loading branch information
vvuk committed May 8, 2024
1 parent a3ca867 commit 0e61f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samply/src/windows/etw_gecko.rs
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ pub fn profile_pid_from_etl_file(context: &mut ProfileContext, etl_file: &Path)
let timing = MarkerTiming::Instant(timestamp);
// this used to create a new category based on provider_name, just lump them together for now
let category = context.get_category(KnownCategory::Unknown);
context.profile.borrow_mut().add_marker(thread.handle, category, s.name().split_once('/').unwrap().1, SimpleMarker(text), timing)
context.profile.borrow_mut().add_marker(thread.handle, category, s.name().split_once('/').unwrap().1, SimpleMarker(text), timing);
//println!("unhandled {}", s.name())
}
}
Expand Down

0 comments on commit 0e61f00

Please sign in to comment.