Skip to content

Commit

Permalink
i#6262: fixed type error
Browse files Browse the repository at this point in the history
Issue: #6262
  • Loading branch information
prasun3 committed Aug 11, 2023
1 parent 9b814f8 commit 35407f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/drcachesim/scheduler/scheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ scheduler_tmpl_t<RecordType, ReaderType>::read_traced_schedule()
}
cur_cpu = entry.cpu;
VPRINT(this, 1, "Output #%d is CPU #%" PRId64 "\n", cur_output, cur_cpu);
outputs_[cur_output].cpu = cur_cpu;
outputs_[cur_output].cpu = (int)cur_cpu;
}
input_ordinal_t input = tid2input[entry.thread];
// We'll fill in the stop ordinal in our second pass below.
Expand Down

0 comments on commit 35407f8

Please sign in to comment.