Skip to content

Commit

Permalink
#1111: active: fix another compile-time tracing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Oct 16, 2020
1 parent 40e207e commit 0bed983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/messaging/active.cc
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ std::tuple<EventType, int> ActiveMessenger::sendDataMPI(
#if vt_check_enabled(trace_enabled)
if (theConfig()->vt_trace_mpi) {
auto tr_end = vt::timing::Timing::getCurrentTime();
auto tr_note = fmt::format("Isend(Data): dest={}, bytes={}", dest, num_bytes);
auto tr_note = fmt::format("Isend(Data): dest={}, bytes={}", dest, subsize);
trace::addUserBracketedNote(tr_begin, tr_end, tr_note, trace_isend);
}
#endif
Expand Down

0 comments on commit 0bed983

Please sign in to comment.