diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-15 21:10:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-15 21:10:42 (GMT) |
commit | e622f3351553cb867566a59b5c8e0d5cf0a74c5a (patch) | |
tree | 639deb8e2e350a16b0712f544e26f64bd91827d4 /fortran | |
parent | e4b251d90df06d1dcd1a1cdda5ff47c3535a98a1 (diff) | |
download | hdf5-e622f3351553cb867566a59b5c8e0d5cf0a74c5a.zip hdf5-e622f3351553cb867566a59b5c8e0d5cf0a74c5a.tar.gz hdf5-e622f3351553cb867566a59b5c8e0d5cf0a74c5a.tar.bz2 |
[svn-r14420] Description:
Correct the prototype for H5Sselect_elements() to take an 'hsize_t *' for
the coordinates, instead of 'hsize_t **'.
Tested on:
Mac OS X/32 10.5.1 (amazon)
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/src/H5Sf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/H5Sf.c b/fortran/src/H5Sf.c index 028a8ed..0a4bd40 100644 --- a/fortran/src/H5Sf.c +++ b/fortran/src/H5Sf.c @@ -1021,7 +1021,7 @@ nh5sselect_elements_c ( hid_t_f *space_id , int_f *op, size_t_f *nelements, hsi } c_nelements = *nelements; - status = H5Sselect_elements(c_space_id, c_op, c_nelements, (const hsize_t **)c_coord); + status = H5Sselect_elements(c_space_id, c_op, c_nelements, c_coord); if ( status >= 0 ) ret_value = 0; HDfree(c_coord); return ret_value; |