[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:
Pedro Vicente Nunes 2005-02-02 16:28:52 -05:00
parent ab243bf369
commit c9c1277401

View File

@ -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;
}