diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-07-16 18:11:52 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-07-16 18:11:52 (GMT) |
commit | d762ea6a31d69a9ebe00e6ed818ab6415091b629 (patch) | |
tree | 88c21004ba9aa981aeb5bf18e9002ed9ceae633d /src/H5D.c | |
parent | 04e309953892847f42c8c3f8cffffbc862c462f2 (diff) | |
download | hdf5-d762ea6a31d69a9ebe00e6ed818ab6415091b629.zip hdf5-d762ea6a31d69a9ebe00e6ed818ab6415091b629.tar.gz hdf5-d762ea6a31d69a9ebe00e6ed818ab6415091b629.tar.bz2 |
[svn-r1494] Lots of various bug-fixes on VL datatypes. VL datatype fields in compound
datatypes aren't yet working, but other ways of using them (vlen atomic, vlen
compound and vlen vlen atomic, etc.) are working.
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -987,7 +987,7 @@ H5D_create(H5G_entry_t *loc, const char *name, const H5T_t *type, } /* Create (open for write access) an object header */ - if (H5O_create(f, 96, &(new_dset->ent)) < 0) { + if (H5O_create(f, 256, &(new_dset->ent)) < 0) { HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, NULL, "unable to create dataset object header"); } |