diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-11 03:06:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-11 03:06:05 (GMT) |
commit | 0b3cccd0cb2521ef77077d677581d2d3342cdc6f (patch) | |
tree | 9cfbea07131180b489808bb4e194353daa853565 /src/H5Gobj.c | |
parent | 48f022a701da0912a4776a3d9d24a102dd562b5f (diff) | |
download | hdf5-0b3cccd0cb2521ef77077d677581d2d3342cdc6f.zip hdf5-0b3cccd0cb2521ef77077d677581d2d3342cdc6f.tar.gz hdf5-0b3cccd0cb2521ef77077d677581d2d3342cdc6f.tar.bz2 |
[svn-r13496] Description:
Reduce size of "default" link message storage.
Tested on:
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Gobj.c')
-rw-r--r-- | src/H5Gobj.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Gobj.c b/src/H5Gobj.c index 3ba294d..f262c4b 100644 --- a/src/H5Gobj.c +++ b/src/H5Gobj.c @@ -172,6 +172,7 @@ H5G_obj_create(H5F_t *f, hid_t dxpl_id, const H5O_ginfo_t *ginfo, lnk.type = H5L_TYPE_HARD; lnk.corder = 0; lnk.corder_valid = linfo->track_corder; + lnk.cset = H5T_CSET_ASCII; lnk.name = &null_char; link_size = H5O_msg_size_f(f, gcpl_id, H5O_LINK_ID, &lnk, (size_t)ginfo->est_name_len); HDassert(link_size); |