diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-02-04 19:36:12 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-02-04 19:36:12 (GMT) |
commit | 78fb916259dad96f1252a99a47c5b576be17a951 (patch) | |
tree | 48d0f14af81a11733b157c20ed186ff4d775a2d8 /tools | |
parent | 517643f146678574693ee13a4857d55c1893f02b (diff) | |
download | hdf5-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')
-rw-r--r-- | tools/h5repack/h5repack_filters.c | 4 |
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; } |