Skip to content

Commit

Permalink
fit intent for nc_insert_array_compound_f in nc interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
rwirth committed Jan 24, 2024
1 parent ef33cb7 commit 2d8ba90
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions fortran/module_netcdf4_nc_interfaces.F90
Original file line number Diff line number Diff line change
Expand Up @@ -310,13 +310,13 @@ Function nc_insert_array_compound_f(ncid, xtype, name, offset, field_typeid, &

USE ISO_C_BINDING, ONLY: C_INT, C_SIZE_T, C_CHAR

Integer(C_INT), VALUE :: ncid, ndims
Integer(C_INT), VALUE :: xtype, field_typeid ! nc_type in C
Integer(C_SIZE_T), VALUE :: offset
Character(KIND=C_CHAR), Intent(IN) :: name(*)
Integer(C_INT), Intent(INOUT) :: dim_sizes(*)
Integer(C_INT), VALUE :: ncid, ndims
Integer(C_INT), VALUE :: xtype, field_typeid ! nc_type in C
Integer(C_SIZE_T), VALUE :: offset
Character(KIND=C_CHAR), Intent(IN) :: name(*)
Integer(C_INT), Intent(IN) :: dim_sizes(*)

Integer(C_INT) :: nc_insert_array_compound_f
Integer(C_INT) :: nc_insert_array_compound_f

End Function nc_insert_array_compound_f
End Interface
Expand Down

0 comments on commit 2d8ba90

Please sign in to comment.