Skip to content

Commit

Permalink
Missed an OFF_T in the examples
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins committed Nov 8, 2024
1 parent 0103a60 commit 7603081
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HDF5Examples/FORTRAN/H5D/h5ex_d_extern.F90
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ PROGRAM main
INTEGER :: i, j
! This change was introduced in the 1.8.12 release
#if H5_VERSION_GE(1,8,12)
INTEGER(OFF_T) :: offset = 0 ! Offset, in bytes, from the beginning of the file to the
! location in the file where the data starts.
INTEGER(HADDR_T) :: offset = 0 ! Offset, in bytes, from the beginning of the file to the
! location in the file where the data starts.
#else
INTEGER :: offset = 0
#endif
Expand Down

0 comments on commit 7603081

Please sign in to comment.