diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-06 15:06:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-06 15:06:05 (GMT) |
commit | 509b8f645deadb880ea09ca5d89f9a28526d78ec (patch) | |
tree | 6dccced9fa3cb2ab60bb5cdb019fd6faceb831f1 /src/H5Fsuper.c | |
parent | a8251f3467bf00e5f1dbe086c96e404ad029a677 (diff) | |
download | hdf5-509b8f645deadb880ea09ca5d89f9a28526d78ec.zip hdf5-509b8f645deadb880ea09ca5d89f9a28526d78ec.tar.gz hdf5-509b8f645deadb880ea09ca5d89f9a28526d78ec.tar.bz2 |
[svn-r13465] Description:
Fix bug in external links when "strong" file close degree is used.
Make external link callbacks use standard error reporting mechanisms.
Other minor code cleanups...
Tested on:
Mac OS X/32 10.4.8 (amazon)
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Fsuper.c')
-rw-r--r-- | src/H5Fsuper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fsuper.c b/src/H5Fsuper.c index 547502d..0df22bb 100644 --- a/src/H5Fsuper.c +++ b/src/H5Fsuper.c @@ -613,8 +613,8 @@ H5F_super_read(H5F_t *f, hid_t dxpl_id, H5G_loc_t *root_loc) H5O_msg_reset(H5O_DRVINFO_ID, &drvinfo); } /* end else */ - /* Close the extension. Bump the version number to avoid closing the - * file (since this will be the only open object). + /* Close the extension. Twiddle the number of open objects to avoid + * closing the file (since this will be the only open object). */ f->nopen_objs++; if(H5O_close(&ext_loc) < 0) |