summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/testh5repack_make.c
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2005-09-12 16:26:29 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2005-09-12 16:26:29 (GMT)
commitb55f9a0ada06a324af19c957bd2ce9d92ab053bb (patch)
treec97b762fd550b232bb384baa2d0f03de79225bce /tools/h5repack/testh5repack_make.c
parent5ad2673fdec68bfe0ba90bce77fc5ec6017693b9 (diff)
downloadhdf5-b55f9a0ada06a324af19c957bd2ce9d92ab053bb.zip
hdf5-b55f9a0ada06a324af19c957bd2ce9d92ab053bb.tar.gz
hdf5-b55f9a0ada06a324af19c957bd2ce9d92ab053bb.tar.bz2
[svn-r11388] Purpose:
bug fix Description: during the generation of some test files, H5Fclose was not called during the #ifdef detection of the scale ofsset filter, a wrong macro symbol was used Solution: Platforms tested: linux Misc. update:
Diffstat (limited to 'tools/h5repack/testh5repack_make.c')
-rw-r--r--tools/h5repack/testh5repack_make.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/h5repack/testh5repack_make.c b/tools/h5repack/testh5repack_make.c
index 5213043..247d606 100644
--- a/tools/h5repack/testh5repack_make.c
+++ b/tools/h5repack/testh5repack_make.c
@@ -167,6 +167,8 @@ int make_testfiles(void)
return -1;
if (make_nbit(loc_id)<0)
goto out;
+ if(H5Fclose(loc_id)<0)
+ return -1;
/*-------------------------------------------------------------------------
* create a file with the scaleoffset filter
@@ -176,9 +178,11 @@ int make_testfiles(void)
return -1;
if (make_scaleoffset(loc_id)<0)
goto out;
+ if(H5Fclose(loc_id)<0)
+ return -1;
/*-------------------------------------------------------------------------
- * create a file with the all filters
+ * create a file with all the filters
*-------------------------------------------------------------------------
*/
if((loc_id = H5Fcreate(FNAME11,H5F_ACC_TRUNC,H5P_DEFAULT,H5P_DEFAULT))<0)
@@ -779,7 +783,7 @@ int make_scaleoffset(hid_t loc_id)
dtid = H5Tcopy(H5T_NATIVE_INT);
-#if defined (H5_HAVE_FILTER_NBIT)
+#if defined (H5_HAVE_FILTER_SCALEOFFSET)
/* remove the filters from the dcpl */
if (H5Premove_filter(dcpl,H5Z_FILTER_ALL)<0)
{