Skip to content

Commit

Permalink
fixed int_f type conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
brtnfld committed Oct 23, 2023
1 parent 91c7304 commit 0cacf46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fortran/src/H5_f.c
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,9 @@ h5init_flags_c(int_f *h5d_flags, size_t_f *h5d_size_flags, int_f *h5e_flags, hid
h5d_flags[55] = (int_f)H5D_MPIO_LINK_CHUNK;
h5d_flags[56] = (int_f)H5D_MPIO_MULTI_CHUNK;

h5d_flags[57] = H5D_SCALAR_IO;
h5d_flags[58] = H5D_VECTOR_IO;
h5d_flags[59] = H5D_SELECTION_IO;
h5d_flags[57] = (int_f)H5D_SCALAR_IO;
h5d_flags[58] = (int_f)H5D_VECTOR_IO;
h5d_flags[59] = (int_f)H5D_SELECTION_IO;

/*
* H5E flags
Expand Down

0 comments on commit 0cacf46

Please sign in to comment.