summaryrefslogtreecommitdiffstats
path: root/src/H5Fpublic.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2004-07-07 18:04:16 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2004-07-07 18:04:16 (GMT)
commit2afbcb2f0e536dfdd00c405278154ea4464d866b (patch)
tree289c75ed09e8adee11474db2bf39698c4ccc16bb /src/H5Fpublic.h
parentc889f67f9c3650e0b3008e0c3ab98bf01c078500 (diff)
downloadhdf5-2afbcb2f0e536dfdd00c405278154ea4464d866b.zip
hdf5-2afbcb2f0e536dfdd00c405278154ea4464d866b.tar.gz
hdf5-2afbcb2f0e536dfdd00c405278154ea4464d866b.tar.bz2
[svn-r8819] Purpose: Potential bug fix
Description: In H5Fget_filesize, file size was returned as haddr_t. Solution: Return file size as hsize_t and parameter for Fortran. Platforms tested: eirene
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r--src/H5Fpublic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h
index c372130..c83f12e 100644
--- a/src/H5Fpublic.h
+++ b/src/H5Fpublic.h
@@ -113,7 +113,7 @@ H5_DLL herr_t H5Fget_vfd_handle(hid_t file_id, hid_t fapl, void** file_handle);
H5_DLL herr_t H5Fmount(hid_t loc, const char *name, hid_t child, hid_t plist);
H5_DLL herr_t H5Funmount(hid_t loc, const char *name);
H5_DLL hssize_t H5Fget_freespace(hid_t file_id);
-H5_DLL haddr_t H5Fget_filesize(hid_t file_id);
+H5_DLL herr_t H5Fget_filesize(hid_t file_id, hsize_t *size);
H5_DLL ssize_t H5Fget_name(hid_t obj_id, char *name, size_t size);
#ifdef __cplusplus