Skip to content

Commit

Permalink
adjusted format IO from Suvi
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Sidorenko committed Aug 10, 2023
1 parent 2dd4ca1 commit 3720b95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ifs_interface/iom.F90
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ SUBROUTINE iom_initialize(client_id, local_comm, return_comm, global_comm )

err = conf_ctx%mpi_return_client_comm(return_comm)
IF (err /= MULTIO_SUCCESS) THEN
WRITE (err_str, "(I)") return_comm
WRITE (err_str, "(I10)") return_comm
CALL ctl_stop('conf_ctx%mpi_return_client_comm(', err_str,') failed: ', multio_error_string(err))
END IF

err = conf_ctx%mpi_parent_comm(int(mio_parent_comm))
IF (err /= MULTIO_SUCCESS) THEN
WRITE (err_str, "(I)") mio_parent_comm
WRITE (err_str, "(I10)") mio_parent_comm
CALL ctl_stop('conf_ctx%mpi_parent_comm(', err_str,') failed: ', multio_error_string(err))
END IF

Expand Down Expand Up @@ -204,7 +204,7 @@ SUBROUTINE iom_init_server(server_comm)

err = conf_ctx%mpi_parent_comm(int(mio_parent_comm))
IF (err /= MULTIO_SUCCESS) THEN
WRITE (err_str, "(I)") mio_parent_comm
WRITE (err_str, "(I10)") mio_parent_comm
CALL ctl_stop('conf_ctx%mpi_parent_comm(', err_str,') failed: ', multio_error_string(err))
END IF

Expand Down Expand Up @@ -408,4 +408,4 @@ END SUBROUTINE ctl_stop

!!======================================================================
END MODULE iom


0 comments on commit 3720b95

Please sign in to comment.