diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-01-09 23:25:49 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-01-09 23:25:49 (GMT) |
commit | 757525241d2f84dfa4225f84f54597b9c5c82506 (patch) | |
tree | c65e8ee30815500949bcc2d8d46d98f608f75a42 /src | |
parent | 9ae87ca1a6bc22fd1307554714ac37d7e7e7afcf (diff) | |
download | hdf5-757525241d2f84dfa4225f84f54597b9c5c82506.zip hdf5-757525241d2f84dfa4225f84f54597b9c5c82506.tar.gz hdf5-757525241d2f84dfa4225f84f54597b9c5c82506.tar.bz2 |
[svn-r3255] Purpose:
Bug fix
Description:
Type-o
Solution:
uint should be uintn
Diffstat (limited to 'src')
-rw-r--r-- | src/H5S.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -654,7 +654,7 @@ H5Sextent_copy(hid_t dst_id,hid_t src_id) herr_t H5S_extent_copy(H5S_extent_t *dst, const H5S_extent_t *src) { - uint u; + uintn u; FUNC_ENTER(H5S_extent_copy, FAIL); |