diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2005-04-27 15:26:28 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2005-04-27 15:26:28 (GMT) |
commit | 192631a52e383f978fc830f38d49c6be27a98d3a (patch) | |
tree | 30319f56ccf1d84a5a98f02272da0cf495003aff | |
parent | fb7f30ef4cd6259aa79776207695f031192f70df (diff) | |
download | hdf5-192631a52e383f978fc830f38d49c6be27a98d3a.zip hdf5-192631a52e383f978fc830f38d49c6be27a98d3a.tar.gz hdf5-192631a52e383f978fc830f38d49c6be27a98d3a.tar.bz2 |
[svn-r10680] Purpose:
H5Pset_scaleoffset API is changed due to addition of the floating-point filter
Description:
Only add a parameter, nothing should change for the tool.
Solution:
Platforms tested:
Linux 2.4
Misc. update:
-rw-r--r-- | tools/h5dump/h5dumpgentest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump/h5dumpgentest.c b/tools/h5dump/h5dumpgentest.c index ab3b69e..56917b7 100644 --- a/tools/h5dump/h5dumpgentest.c +++ b/tools/h5dump/h5dumpgentest.c @@ -4664,7 +4664,7 @@ static void gent_filters(void) assert(ret>=0); /* set the scaleoffset filter */ - ret=H5Pset_scaleoffset(dcpl,H5Tget_size(H5T_NATIVE_INT)); + ret=H5Pset_scaleoffset(dcpl,H5Tget_size(H5T_NATIVE_INT),2); assert(ret>=0); ret=make_dset(fid,"scaleoffset",sid,H5T_NATIVE_INT,dcpl,buf1); |