Skip to content

Commit 14d2410

Browse files
committed
fortran: Correct type of info_used
It is incorrectly typed as `MPI_Comm` in only `pmpi` in 24f7bd3. Signed-off-by: KAWASHIMA Takahiro <[email protected]> (cherry picked from commit 056eb39)
1 parent 58d98ed commit 14d2410

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mpi/fortran/use-mpi-f08/pmpi-f08-interfaces.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1759,7 +1759,7 @@ subroutine PMPI_Comm_get_info_f08(comm,info_used,ierror)
17591759
use :: mpi_f08_types, only : MPI_Comm, MPI_Info
17601760
implicit none
17611761
TYPE(MPI_Comm), INTENT(IN) :: comm
1762-
TYPE(MPI_Comm), INTENT(OUT) :: info_used
1762+
TYPE(MPI_Info), INTENT(OUT) :: info_used
17631763
INTEGER, OPTIONAL, INTENT(OUT) :: ierror
17641764
end subroutine PMPI_Comm_get_info_f08
17651765
end interface PMPI_Comm_get_info

0 commit comments

Comments
 (0)