[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
This commit is contained in:
Quincey Koziol 2003-12-31 15:26:00 -05:00
parent b3a3693688
commit 0d405bdfb2

View File

@ -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)