diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-07-11 18:50:36 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-07-11 18:50:36 (GMT) |
commit | 737f86822de263712164746025f48ca2fca410db (patch) | |
tree | c719b8d87df4df9835cdfd37cdb898462e1ecfd1 /src/H5Fmount.c | |
parent | 650ca6a21849a31b29ae0e4644edb934b5cb3783 (diff) | |
download | hdf5-737f86822de263712164746025f48ca2fca410db.zip hdf5-737f86822de263712164746025f48ca2fca410db.tar.gz hdf5-737f86822de263712164746025f48ca2fca410db.tar.bz2 |
[svn-r22554] remove the file_id from the H5F_t struct and add an id_exists instead
Diffstat (limited to 'src/H5Fmount.c')
-rw-r--r-- | src/H5Fmount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fmount.c b/src/H5Fmount.c index 6a08921..55f364c 100644 --- a/src/H5Fmount.c +++ b/src/H5Fmount.c @@ -599,7 +599,7 @@ H5F_mount_count_ids_recurse(H5F_t *f, unsigned *nopen_files, unsigned *nopen_obj HDassert(nopen_objs); /* If this file is still open, increment number of file IDs open */ - if(f->file_id > 0) + if(f->id_exists) *nopen_files += 1; /* Increment number of open objects in file |