mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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:
parent
9b070ebdcf
commit
3a64d64ff9
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user