Skip to content

Commit

Permalink
fix(conv): Don't miss last event during conversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
schilkp committed Nov 4, 2024
1 parent 060afc5 commit 2214e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conv/tband-conv/src/trace/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ impl TraceConverter {

let mut trace = Trace::new(self.core_count, self.mode);

for evt_idx in 0..max_idx {
for evt_idx in 0..=max_idx {
let evt = &self.evts.evts[evt_idx];
let core_id = evt.core_id;

Expand Down

0 comments on commit 2214e7c

Please sign in to comment.