summaryrefslogtreecommitdiffstats
path: root/src/H5O.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-11 18:50:36 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-11 18:50:36 (GMT)
commit737f86822de263712164746025f48ca2fca410db (patch)
treec719b8d87df4df9835cdfd37cdb898462e1ecfd1 /src/H5O.c
parent650ca6a21849a31b29ae0e4644edb934b5cb3783 (diff)
downloadhdf5-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/H5O.c')
-rw-r--r--src/H5O.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5O.c b/src/H5O.c
index e9df5e6..2926c97 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -1642,7 +1642,7 @@ H5O_close(H5O_loc_t *loc)
#ifdef H5O_DEBUG
if(H5DEBUG(O)) {
- if(/*H5F_FILE_ID(loc->file)< 0 &&*/ 1 == H5F_NREFS(loc->file))
+ if(H5F_FILE_ID(loc->file) && 1 == H5F_NREFS(loc->file))
HDfprintf(H5DEBUG(O), "< %a auto %lu remaining\n",
loc->addr,
(unsigned long)H5F_NOPEN_OBJS(loc->file));