Skip to content

Commit 5ea77f8

Browse files
author
Jan Fecht
committed
Fix invalid indentation in session_finalize_f.c
Signed-off-by: Jan Fecht <mail@fecht.cc>
1 parent 51f2b8b commit 5ea77f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ompi/mpi/fortran/mpif-h/session_finalize_f.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ void ompi_session_finalize_f(MPI_Fint *session, MPI_Fint *ierr)
8181
c_ierr = PMPI_Session_finalize(&c_session);
8282
if (NULL != ierr) *ierr = OMPI_INT_2_FINT(c_ierr);
8383

84-
/* This value comes from the MPI_SESSION_NULL value in mpif.h. Do not
85-
change without consulting mpif.h! */
86-
87-
if (MPI_SUCCESS == c_ierr) {
88-
*session = 0;
89-
}
84+
/* This value comes from the MPI_SESSION_NULL value in mpif.h. Do not
85+
change without consulting mpif.h! */
86+
87+
if (MPI_SUCCESS == c_ierr) {
88+
*session = 0;
89+
}
9090
}

0 commit comments

Comments
 (0)