mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r9921] Purpose:
bug fix Description: the test fail condtion of a close function was set to if H5Dclose < 1 Solution: set to < 0 Platforms tested: linux Misc. update:
This commit is contained in:
parent
ab243bf369
commit
c9c1277401
@ -2876,7 +2876,7 @@ handle_datasets(hid_t fid, char *dset, void *data)
|
||||
dump_dataset(dsetid, dset, sset);
|
||||
}
|
||||
|
||||
if (H5Dclose(dsetid) < 1)
|
||||
if (H5Dclose(dsetid) < 0)
|
||||
d_status = EXIT_FAILURE;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user