diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-12-31 20:26:00 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-12-31 20:26:00 (GMT) |
commit | 0d405bdfb29f6af66b10d213804a55b6e2cd4998 (patch) | |
tree | 1b38613cb64e2169855bbf9e7646136f9487abd5 /tools | |
parent | b3a3693688ce862ff1f45d5882f431b428c0c235 (diff) | |
download | hdf5-0d405bdfb29f6af66b10d213804a55b6e2cd4998.zip hdf5-0d405bdfb29f6af66b10d213804a55b6e2cd4998.tar.gz hdf5-0d405bdfb29f6af66b10d213804a55b6e2cd4998.tar.bz2 |
[svn-r8006] Purpose:
Code cleanup
Description:
Tweaked down the size of the szip 'pixels per block' for a test, now that
the library is range-checking this value more strictly.
Platforms tested:
FreeBSD 4.9 (sleipnir)
too minor for h5committest
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5repack/testh5repack_filters.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5repack/testh5repack_filters.c b/tools/h5repack/testh5repack_filters.c index 5a35d67..3313d77 100644 --- a/tools/h5repack/testh5repack_filters.c +++ b/tools/h5repack/testh5repack_filters.c @@ -125,7 +125,7 @@ int make_szip(hid_t loc_id) pixels_per_block must be an even number, and <= pixels_per_scanline and <= MAX_PIXELS_PER_BLOCK */ - szip_pixels_per_block=16; + szip_pixels_per_block=10; /* create a space */ if((sid = H5Screate_simple(RANK, dims, NULL))<0) |