[svn-r10395] Purpose:

Bug fix.

Description:
    One test case of scaleoffset filter has fill value too large for int.

Solution:
    Change the value to be within the range of int.

Platforms tested:
    heping

Misc. update:
This commit is contained in:
Xiaowen Wu 2005-03-23 21:08:15 -05:00
parent 9b070ebdcf
commit 3a64d64ff9

View File

@ -3726,7 +3726,7 @@ test_scaleoffset_int_2(hid_t file)
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
/* Set fill value */
fillval = 18446744073709551615;
fillval = 10000;
if (H5Pset_fill_value(dc, H5T_NATIVE_INT, &fillval)<0) goto error;
/* Set up to use scaleoffset filter, let library calculate minbits */