From fdbbc9f09c33eb10be6c9ccb31601299f72184a3 Mon Sep 17 00:00:00 2001 From: Elena Pourmal Date: Mon, 2 Apr 2007 22:39:52 -0500 Subject: [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 --- src/H5Ocache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Ocache.c b/src/H5Ocache.c index b2e86c9..41a0bbf 100644 --- a/src/H5Ocache.c +++ b/src/H5Ocache.c @@ -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; -- cgit v0.12