Skip to content

Commit

Permalink
Merge pull request #29861 from lindsayad/fix-missing-chkerr
Browse files Browse the repository at this point in the history
Fix to use LibmeshPetscCall
  • Loading branch information
lindsayad authored Feb 12, 2025
2 parents cd66266 + 7b2fb1f commit c8ca621
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions framework/src/problems/FEProblemBase.C
Original file line number Diff line number Diff line change
Expand Up @@ -6449,10 +6449,7 @@ FEProblemBase::solveLinearSystem(const unsigned int linear_sys_num,

#if !PETSC_RELEASE_LESS_THAN(3, 12, 0)
if (!_app.isUltimateMaster())
{
auto ierr = PetscOptionsPop();
LIBMESH_CHKERR(ierr);
}
LibmeshPetscCall(PetscOptionsPop());
#endif
}

Expand Down

0 comments on commit c8ca621

Please sign in to comment.