Skip to content

Commit

Permalink
i#6262: fixed format string
Browse files Browse the repository at this point in the history
Issue: #6262
  • Loading branch information
prasun3 committed Aug 11, 2023
1 parent 9bfde8b commit 9b814f8
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 @@ -811,7 +811,7 @@ scheduler_tmpl_t<RecordType, ReaderType>::read_traced_schedule()
// We also need to translate the thread and cpu id values into 0-based ordinals.
std::unordered_map<memref_tid_t, input_ordinal_t> tid2input;
for (int i = 0; i < static_cast<input_ordinal_t>(inputs_.size()); ++i) {
VPRINT(this, 1, "tid2input: tid: %ld -> %d\n", inputs_[i].tid, i);
VPRINT(this, 1, "tid2input: tid: %" PRId64 " -> %d\n", inputs_[i].tid, i);
tid2input[inputs_[i].tid] = i;
}
std::vector<std::set<uint64_t>> start2stop(inputs_.size());
Expand Down

0 comments on commit 9b814f8

Please sign in to comment.