summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack_filters.c
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2004-02-04 19:36:12 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2004-02-04 19:36:12 (GMT)
commit78fb916259dad96f1252a99a47c5b576be17a951 (patch)
tree48d0f14af81a11733b157c20ed186ff4d775a2d8 /tools/h5repack/h5repack_filters.c
parent517643f146678574693ee13a4857d55c1893f02b (diff)
downloadhdf5-78fb916259dad96f1252a99a47c5b576be17a951.zip
hdf5-78fb916259dad96f1252a99a47c5b576be17a951.tar.gz
hdf5-78fb916259dad96f1252a99a47c5b576be17a951.tar.bz2
[svn-r8149]
Purpose: replaced name of delete filter with remove filter for the new function H5Premove_filter Description: Solution: Platforms tested: linux Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack_filters.c')
-rw-r--r--tools/h5repack/h5repack_filters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack_filters.c b/tools/h5repack/h5repack_filters.c
index aead698..42eecb2 100644
--- a/tools/h5repack/h5repack_filters.c
+++ b/tools/h5repack/h5repack_filters.c
@@ -192,7 +192,7 @@ int apply_filters(hid_t dcpl_id,
{
if (obj->filter[i].filtn==H5Z_FILTER_NONE)
{
- if (nfilters && H5Pdelete_filter(dcpl_id,H5Z_FILTER_NONE)<0)
+ if (nfilters && H5Premove_filter(dcpl_id,H5Z_FILTER_NONE)<0)
return -1;
return 0;
}
@@ -205,7 +205,7 @@ int apply_filters(hid_t dcpl_id,
*/
if (nfilters) {
- if (H5Pdelete_filter(dcpl_id,H5Z_FILTER_NONE)<0)
+ if (H5Premove_filter(dcpl_id,H5Z_FILTER_NONE)<0)
return -1;
}