Skip to content
Snippets Groups Projects
Commit 5f059f08 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

small error in petsc helpers corrected

parent d703c9c4
No related branches found
No related tags found
1 merge request!18Issue/petsc 3 7
...@@ -129,9 +129,9 @@ namespace AMDiS ...@@ -129,9 +129,9 @@ namespace AMDiS
inline PetscErrorCode options_view(PetscViewer viewer) inline PetscErrorCode options_view(PetscViewer viewer)
{ {
#if (PETSC_VERSION_MINOR >= 7) #if (PETSC_VERSION_MINOR >= 7)
return PetscOptionsView(PETSC_NULL, PetscViewer); return PetscOptionsView(PETSC_NULL, viewer);
#else #else
return PetscOptionsView(PetscViewer); return PetscOptionsView(viewer);
#endif #endif
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment