summaryrefslogtreecommitdiffstats
path: root/src/H5Fistore.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-04-14 19:07:32 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-04-14 19:07:32 (GMT)
commitbb12f5d5d2e76bad01222f214a8e492e6f13e07b (patch)
treec49420fb1d15712fd6c0e1005968692e20e72e9a /src/H5Fistore.c
parent0a77488511419bb82b7901bd63d8fdc2a0a4ec9b (diff)
downloadhdf5-bb12f5d5d2e76bad01222f214a8e492e6f13e07b.zip
hdf5-bb12f5d5d2e76bad01222f214a8e492e6f13e07b.tar.gz
hdf5-bb12f5d5d2e76bad01222f214a8e492e6f13e07b.tar.bz2
[svn-r2147] Corrected a few problems in the free-list code and added more assert() macros
to double-check things. I've turned them back on again now. I also changed the internal representation of a few struct fields to be float instead of double, since the HP/UX 10.20 compiler was having problems with the alignment of the doubles.
Diffstat (limited to 'src/H5Fistore.c')
-rw-r--r--src/H5Fistore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fistore.c b/src/H5Fistore.c
index c4728ad..8339e30 100644
--- a/src/H5Fistore.c
+++ b/src/H5Fistore.c
@@ -85,7 +85,7 @@ typedef struct H5F_rdcc_ent_t {
hbool_t locked; /*entry is locked in cache */
hbool_t dirty; /*needs to be written to disk? */
H5O_layout_t *layout; /*the layout message */
- double split_ratios[3];/*B-tree node splitting ratios */
+ float split_ratios[3];/*B-tree node splitting ratios */
H5O_pline_t *pline; /*filter pipeline message */
hssize_t offset[H5O_LAYOUT_NDIMS]; /*chunk name */
size_t rd_count; /*bytes remaining to be read */