diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-09-01 22:46:16 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-09-01 22:46:16 (GMT) |
commit | 90103afad6237862caa8fe02e80c57d9515e2b30 (patch) | |
tree | 4c7c784f181b7a4c8f45b0262ed648b588d9a7ad /tools/h5dump/h5dumpgentest.c | |
parent | fc90c784e1b114079038484f1825ac53987c6b44 (diff) | |
download | hdf5-90103afad6237862caa8fe02e80c57d9515e2b30.zip hdf5-90103afad6237862caa8fe02e80c57d9515e2b30.tar.gz hdf5-90103afad6237862caa8fe02e80c57d9515e2b30.tar.bz2 |
[svn-r11337] Purpose:
Code cleanup
Description:
Changed some scale+offset filter symbols from H5_SO_... -> H5Z_SO_...
to indicate that they are in the H5Z package.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'tools/h5dump/h5dumpgentest.c')
-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 0dcde7f..4f1c0f5 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,2,H5Tget_size(H5T_NATIVE_INT)); + ret=H5Pset_scaleoffset(dcpl,H5Z_SO_INT,H5Tget_size(H5T_NATIVE_INT)); assert(ret>=0); ret=make_dset(fid,"scaleoffset",sid,H5T_NATIVE_INT,dcpl,buf1); |