Skip to content

Commit

Permalink
Fix type mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrack committed May 6, 2020
1 parent 0a2361e commit f0d6626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mpiwrap/message_passing.F
Original file line number Diff line number Diff line change
Expand Up @@ -3669,7 +3669,7 @@ FUNCTION mp_file_type_hindexed_make_chv(count, lengths, displs) &
type_descriptor%type_handle = 0
#if defined(__parallel)
CALL MPI_Type_create_hindexed(count, lengths, displs, MPI_CHARACTER, &
CALL MPI_Type_create_hindexed(count, lengths, INT(displs, KIND=address_kind), MPI_CHARACTER, &
type_descriptor%type_handle, ierr)
IF (ierr /= 0) &
CPABORT("MPI_Type_create_hindexed @ "//routineN)
Expand Down

0 comments on commit f0d6626

Please sign in to comment.