Skip to content

Commit

Permalink
#16: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly committed Feb 14, 2024
1 parent 9d0da74 commit 2e32ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt-tv/render/render.cc
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ std::pair<double, double> Render::computeRankQoiRange_() {
);
rqmin_for_phase = prmin->second;
} else {
throw std::runtime_error("Invalid QOI: " + this->object_qoi_);
throw std::runtime_error("Invalid QOI: " + this->rank_qoi_);
}
if (rqmax_for_phase > rq_max) rq_max = rqmax_for_phase;
if (rqmin_for_phase < rq_min) rq_min = rqmin_for_phase;
Expand Down

0 comments on commit 2e32ccc

Please sign in to comment.