diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-14 19:07:32 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-14 19:07:32 (GMT) |
commit | bb12f5d5d2e76bad01222f214a8e492e6f13e07b (patch) | |
tree | c49420fb1d15712fd6c0e1005968692e20e72e9a /src/H5Gstab.c | |
parent | 0a77488511419bb82b7901bd63d8fdc2a0a4ec9b (diff) | |
download | hdf5-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/H5Gstab.c')
-rw-r--r-- | src/H5Gstab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gstab.c b/src/H5Gstab.c index 2b48712..26f1212 100644 --- a/src/H5Gstab.c +++ b/src/H5Gstab.c @@ -177,7 +177,7 @@ H5G_stab_insert(H5G_entry_t *grp_ent, const char *name, H5G_entry_t *obj_ent) { H5O_stab_t stab; /*symbol table message */ H5G_bt_ud1_t udata; /*data to pass through B-tree */ - static double split_ratios[3] = {0.1, 0.5, 0.9}; + static float split_ratios[3] = {0.1, 0.5, 0.9}; FUNC_ENTER(H5G_stab_insert, FAIL); |