Skip to content

Commit

Permalink
Minor bugfix and tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
davidalbo committed Dec 10, 2024
1 parent 72015c3 commit 26ab129
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions src/libcode/vx_shapedata/mode_conf_info.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1922,9 +1922,6 @@ void ModeConfInfo::check_multivar_not_implemented()
}

if (status) {
mlog << Error
<< "\nModeConfInfo::check_multivar_not_implemented:\n"
<< " Some features not yet implemented in multivar mode\n\n";
exit ( 1 );
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/tools/core/mode/multivar_frontend.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ int MultivarFrontEnd::run(const StringArray & Argv)
exit ( 1 );
}

if ((!config.quilt) && NCTF != NCRF || NCTO != NCRO) {
if ((!config.quilt) && (NCTF != NCRF || NCTO != NCRO)) {
mlog << Error << "\nMultivarFrontEnd::run() ->"
<< "all convolution radius and threshold arrays must have the same number of elements without quilting\n\n";
exit ( 1 );
Expand Down

0 comments on commit 26ab129

Please sign in to comment.