Skip to content

Commit 7db5fa8

Browse files
committed
review feedback
1 parent cdd29c6 commit 7db5fa8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Changed
66
- `measureme`: Update StringId and Addr sizes from u32 to u64 ([GH-216])
7-
- `analyzeme`: New support for v9 file format, which uses larger event sizes
7+
- `analyzeme`: v9 file format, which uses larger events ([GH-216])
88

99
## [10.1.2] - 2023-12-14
1010

crox/src/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,7 @@ fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
180180
.find(" --crate-name ")
181181
.map(|index| index + 14);
182182
if let Some(index) = index_of_crate_name {
183-
let metadata = data.metadata();
184-
let (_, last) = metadata.cmd.split_at(index);
183+
let (_, last) = data.metadata().cmd.split_at(index);
185184
let (crate_name, _) = last.split_at(last.find(" ").unwrap_or(last.len()));
186185

187186
let process_name = json!({

0 commit comments

Comments
 (0)