Skip to content

Commit

Permalink
Merge pull request #2411 from MRtrix3/5ttcheck_voxels_option
Browse files Browse the repository at this point in the history
5ttcheck: Fix terminal message RE: -voxels option
  • Loading branch information
Lestropie authored Nov 21, 2024
2 parents c852831 + 3106ae1 commit 13884ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/5ttcheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void run ()
}
}

const std::string vox_option_suggestion = get_options ("masks").size() ? (" (suggest checking " + std::string(argument.size() > 1 ? "outputs from" : "output of") + " -masks option)") : " (suggest re-running using the -masks option to see voxels where tissue fractions do not sum to 1.0)";
const std::string vox_option_suggestion = get_options ("voxels").size() ? (" (suggest checking " + std::string(argument.size() > 1 ? "outputs from" : "output of") + " -voxels option)") : " (suggest re-running using the -voxels option to see voxels where tissue fractions do not sum to 1.0)";

if (major_error_count) {
if (argument.size() > 1)
Expand Down

0 comments on commit 13884ec

Please sign in to comment.