diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:25:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:25:10 (GMT) |
commit | 0709cc1025c1e7f3952ca1a5dd7daa10b6b21ec6 (patch) | |
tree | 77e5e736bb2eab9bead91252636f3235b47359c5 /src/H5G.c | |
parent | 7e7b6854e63f185fcddd9158a2c67450c4d94e0c (diff) | |
download | hdf5-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/H5G.c')
-rw-r--r-- | src/H5G.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); } |