diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-10-18 16:42:12 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2004-10-18 16:42:12 (GMT) |
commit | d8fdc955cc9cf13c6778a55c3502f2a7089ae472 (patch) | |
tree | cdf33b5051a2ff7a36da502af88fc9631e0d7c1e /tools/h5repack/h5repack.h | |
parent | 1de960855f489baa174b77cff15c46a84a55d201 (diff) | |
download | hdf5-d8fdc955cc9cf13c6778a55c3502f2a7089ae472.zip hdf5-d8fdc955cc9cf13c6778a55c3502f2a7089ae472.tar.gz hdf5-d8fdc955cc9cf13c6778a55c3502f2a7089ae472.tar.bz2 |
[svn-r9428] Purpose:
bug fix
Description:
when specifying both an input object e.g -f mydset:GZIP=1 and a defined chunk -l CHUNK=20x20
the filter used a defined default chunk instead
Solution:
add a check for the input chunk
Platforms tested:
linux (small change)
Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack.h')
-rw-r--r-- | tools/h5repack/h5repack.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/h5repack/h5repack.h b/tools/h5repack/h5repack.h index 7411085..b5906ae 100644 --- a/tools/h5repack/h5repack.h +++ b/tools/h5repack/h5repack.h @@ -189,6 +189,7 @@ int apply_filters(const char* name, /* object name from traverse list */ hid_t dcpl_id, /* dataset creation property list */ hid_t type_id, /* datatype */ pack_opt_t *options, /* repack options */ + int has_layout, /* input chunk */ pack_info_t *obj); /* info about object to filter */ int has_filter(hid_t dcpl_id, |