diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-06-14 20:37:04 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-06-14 20:37:04 (GMT) |
commit | 162b19cd6c1f6c6b14254c60b83bd14b1c11184c (patch) | |
tree | 2185b176ed9612511bb749fd1db4de2779278724 /src/H5FD.c | |
parent | 3344dd72ed167f95add9ed58da70e03ca336c2a4 (diff) | |
download | hdf5-162b19cd6c1f6c6b14254c60b83bd14b1c11184c.zip hdf5-162b19cd6c1f6c6b14254c60b83bd14b1c11184c.tar.gz hdf5-162b19cd6c1f6c6b14254c60b83bd14b1c11184c.tar.bz2 |
[svn-r10919] Purpose: Take Out An Unused Function
Description: Data conversion function H5T_conv_i32le_f64le() was unused.
Because we have new conversion functions for integers and floating numbers,
this old function is taken out.
Platforms tested: fuss - simple change.
Misc. update:
Diffstat (limited to 'src/H5FD.c')
-rw-r--r-- | src/H5FD.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2937,6 +2937,7 @@ H5FDset_eoa(H5FD_t *file, haddr_t addr) /* Check args */ if (!file || !file->cls) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid file pointer") + if (!H5F_addr_defined(addr) || addr>file->maxaddr) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid end-of-address value") |