Skip to content

Commit 1d3f78c

Browse files
committed
fortran: Call PMPI from PMPI_Status_set_cancelled_f08
This is a bug which was forgotten to change in c08f97b. Signed-off-by: KAWASHIMA Takahiro <[email protected]> (cherry picked from commit bd2fe9c)
1 parent a31662e commit 1d3f78c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ompi/mpi/fortran/use-mpi-f08/profile/pstatus_set_cancelled_f08.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ subroutine PMPI_Status_set_cancelled_f08(status,flag,ierror)
1616
! See note in mpi-f-interfaces-bind.h for why we include an
1717
! interface here and call a PMPI_* subroutine below.
1818
interface
19-
subroutine MPI_Status_set_cancelled(status, flag, ierror)
19+
subroutine PMPI_Status_set_cancelled(status, flag, ierror)
2020
use :: mpi_f08_types, only : MPI_Status
2121
type(MPI_Status), intent(inout) :: status
2222
logical, intent(in) :: flag
2323
integer, intent(out) :: ierror
24-
end subroutine MPI_Status_set_cancelled
24+
end subroutine PMPI_Status_set_cancelled
2525
end interface
2626

2727
call PMPI_Status_set_cancelled(status,flag,c_ierror)

0 commit comments

Comments
 (0)