diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-20 16:36:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-20 16:36:38 (GMT) |
commit | ba8fbc02dbee6abeeb8eddd3a3e47aeb5c58ae1e (patch) | |
tree | bac8e162e0874ce0e891f52c082d584bbe0da45d /src/H5Gstab.c | |
parent | 37f774f5a9a71ba023d021dd90b53527530cd8a9 (diff) | |
download | hdf5-ba8fbc02dbee6abeeb8eddd3a3e47aeb5c58ae1e.zip hdf5-ba8fbc02dbee6abeeb8eddd3a3e47aeb5c58ae1e.tar.gz hdf5-ba8fbc02dbee6abeeb8eddd3a3e47aeb5c58ae1e.tar.bz2 |
[svn-r2165] Fixed last batch of problems when using free-lists on the SGI machines. They
should (hopefully) work on all platforms again now.
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 26f1212..2b48712 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 float split_ratios[3] = {0.1, 0.5, 0.9}; + static double split_ratios[3] = {0.1, 0.5, 0.9}; FUNC_ENTER(H5G_stab_insert, FAIL); |