diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2005-07-20 22:38:46 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2005-07-20 22:38:46 (GMT) |
commit | e9d54ca186be0e6cca65dcfb6d1eed5362a308ae (patch) | |
tree | abbaa01042af0bae0493ead08eb74ede926dd6d6 | |
parent | d4bf186a1867dfc15f458bb1da9f785d4b43aaa3 (diff) | |
download | hdf5-e9d54ca186be0e6cca65dcfb6d1eed5362a308ae.zip hdf5-e9d54ca186be0e6cca65dcfb6d1eed5362a308ae.tar.gz hdf5-e9d54ca186be0e6cca65dcfb6d1eed5362a308ae.tar.bz2 |
[svn-r11092] Purpose:
Correct a typo for function declaration.
It causes problems for windows DLLs.
Description:
In file hdf5\hl\fortran\src\H5LTf90proto.h
Line 183 'n' might be missed in the very beginning
"h5ltget_dataset_ndims_c"
should change to
"nh5ltget_dataset_ndims_c"
Solution:
change it.
Platforms tested:
too minor to test at other platform,
Fang reported this, so I assume it should work on windows.
Misc. update:
-rwxr-xr-x | hl/fortran/src/H5LTf90proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/fortran/src/H5LTf90proto.h b/hl/fortran/src/H5LTf90proto.h index e3c36fd..9a198a9 100755 --- a/hl/fortran/src/H5LTf90proto.h +++ b/hl/fortran/src/H5LTf90proto.h @@ -180,7 +180,7 @@ nh5ltget_attribute_string_c(hid_t_f *loc_id, H5_DLL int_f -h5ltget_dataset_ndims_c(hid_t_f *loc_id, +nh5ltget_dataset_ndims_c(hid_t_f *loc_id, int_f *namelen, _fcd name, int_f *rank); |