[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:
Elena Pourmal 2007-04-02 22:39:52 -05:00
parent 5b02211e76
commit fdbbc9f09c

View File

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