Skip to content

Commit

Permalink
CONJOIN: Fix the error detection logic
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Aug 18, 2023
1 parent e6f600d commit 9ab55d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/seacas/applications/conjoin/Conjoin.C
Original file line number Diff line number Diff line change
Expand Up @@ -2052,9 +2052,9 @@ namespace {
fmt::print("ERROR: Part mesh {} has a different number of {} variables ({}) than the root "
"part mesh ({}) which is not allowed.\n",
p, vars.label(), num_vars, vars.index_.size() - extra);
return false;
return true;
}
return true;
return false;
}

template <typename INT> void put_mesh_summary(const Excn::Mesh<INT> &mesh)
Expand Down

0 comments on commit 9ab55d5

Please sign in to comment.