summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-06-11 16:53:26 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-06-11 16:53:26 (GMT)
commitd81a04ff48eb0296ef181454f7bf2cdaa2a49eba (patch)
tree5b80b1e59a551ddede68c27d9def18713cd7b568 /src/H5FD.c
parent1721bcdbb5bedda1b31b76afb2429e3daa3aba15 (diff)
downloadhdf5-d81a04ff48eb0296ef181454f7bf2cdaa2a49eba.zip
hdf5-d81a04ff48eb0296ef181454f7bf2cdaa2a49eba.tar.gz
hdf5-d81a04ff48eb0296ef181454f7bf2cdaa2a49eba.tar.bz2
[svn-r5589] Purpose:
Bug fix. Description: H5P_get was reading a 'hsize_t' field into a 'size_t' variable, causing problems on the HP's and Windows. Solution: Changed the variable to be an hsize_t Platforms tested: HP/UX 11.0 (kelgia)
Diffstat (limited to 'src/H5FD.c')
-rw-r--r--src/H5FD.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index dcab396..f0e1aad 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -774,8 +774,8 @@ H5FD_open(const char *name, unsigned flags, hid_t fapl_id, haddr_t maxaddr)
H5FD_class_t *driver;
H5FD_t *file=NULL;
hid_t driver_id = -1;
- size_t meta_block_size=0;
- size_t sdata_block_size=0;
+ hsize_t meta_block_size=0;
+ hsize_t sdata_block_size=0;
H5P_genplist_t *plist; /* Property list pointer */
FUNC_ENTER_NOAPI(H5FD_open, NULL);