diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2014-09-26 14:25:04 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2014-09-26 14:25:04 (GMT) |
commit | 6f2f584c42f582485443d696c0d52f585b3c1cc1 (patch) | |
tree | 6f3d91a3a5c191baeaf934c8daae53547173cadc /fortran/test | |
parent | 8bd91611f45490c06b08cdc5a712127f5541033c (diff) | |
download | hdf5-6f2f584c42f582485443d696c0d52f585b3c1cc1.zip hdf5-6f2f584c42f582485443d696c0d52f585b3c1cc1.tar.gz hdf5-6f2f584c42f582485443d696c0d52f585b3c1cc1.tar.bz2 |
[svn-r25626] Changed the callback function integer type from INTEGER to INTEGER(C_INT) for portability, HDFFV-8909.
Diffstat (limited to 'fortran/test')
-rw-r--r-- | fortran/test/tH5L_F03.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/test/tH5L_F03.f90 b/fortran/test/tH5L_F03.f90 index 8cc17fb..795f1e2 100644 --- a/fortran/test/tH5L_F03.f90 +++ b/fortran/test/tH5L_F03.f90 @@ -58,7 +58,7 @@ CONTAINS !** !*************************************************************** - INTEGER FUNCTION liter_cb(group, name, link_info, op_data) bind(C) + INTEGER(KIND=C_INT) FUNCTION liter_cb(group, name, link_info, op_data) bind(C) USE HDF5 USE ISO_C_BINDING |