[svn-r2494] Changed the default size of object headers from 16 bytes to 256 bytes.

This commit is contained in:
Quincey Koziol 2000-08-31 14:25:10 -05:00
parent 7e7b6854e6
commit 0709cc1025

View File

@ -1193,7 +1193,7 @@ H5G_mkroot (H5F_t *f, H5G_entry_t *ent)
*/ */
if (!ent) { if (!ent) {
ent = &new_root; 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, HRETURN_ERROR (H5E_SYM, H5E_CANTINIT, FAIL,
"unable to create root group"); "unable to create root group");
} }