mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-17 16:10:24 +08:00
[svn-r13575] Problem:
dsets failed on kelgia with assertion failure in H5Ocache.c. Kelgia could not deal with the comparison of uint64_t variable with 4294967296 constant. Solution: By John's suggestions used suffix LL for the constant. Platforms tested: kelgia, kagiso, and smirom with icc compiler
This commit is contained in:
parent
5b02211e76
commit
fdbbc9f09c
@ -739,7 +739,7 @@ H5O_assert(oh);
|
||||
break;
|
||||
|
||||
case 2: /* 4 byte size */
|
||||
HDassert(chunk0_size < 4294967296);
|
||||
HDassert(chunk0_size < 4294967296LL);
|
||||
UINT32ENCODE(p, chunk0_size);
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user