summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-08-31 19:25:10 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-08-31 19:25:10 (GMT)
commit0709cc1025c1e7f3952ca1a5dd7daa10b6b21ec6 (patch)
tree77e5e736bb2eab9bead91252636f3235b47359c5 /src
parent7e7b6854e63f185fcddd9158a2c67450c4d94e0c (diff)
downloadhdf5-0709cc1025c1e7f3952ca1a5dd7daa10b6b21ec6.zip
hdf5-0709cc1025c1e7f3952ca1a5dd7daa10b6b21ec6.tar.gz
hdf5-0709cc1025c1e7f3952ca1a5dd7daa10b6b21ec6.tar.bz2
[svn-r2494] Changed the default size of object headers from 16 bytes to 256 bytes.
Diffstat (limited to 'src')
-rw-r--r--src/H5G.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5G.c b/src/H5G.c
index 24bd204..5d2366a 100644
--- a/src/H5G.c
+++ b/src/H5G.c
@@ -1193,7 +1193,7 @@ H5G_mkroot (H5F_t *f, H5G_entry_t *ent)
*/
if (!ent) {
ent = &new_root;
- if (H5G_stab_create (f, 16, ent/*out*/)<0) {
+ if (H5G_stab_create (f, 256, ent/*out*/)<0) {
HRETURN_ERROR (H5E_SYM, H5E_CANTINIT, FAIL,
"unable to create root group");
}