summaryrefslogtreecommitdiffstats
path: root/src/H5Ocache.c
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2007-04-03 03:39:52 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2007-04-03 03:39:52 (GMT)
commitfdbbc9f09c33eb10be6c9ccb31601299f72184a3 (patch)
tree76ceadfc9c45e6567161933350d59ad88edb5dd2 /src/H5Ocache.c
parent5b02211e762bad3ab6037aef314000ddc0bd81a5 (diff)
downloadhdf5-fdbbc9f09c33eb10be6c9ccb31601299f72184a3.zip
hdf5-fdbbc9f09c33eb10be6c9ccb31601299f72184a3.tar.gz
hdf5-fdbbc9f09c33eb10be6c9ccb31601299f72184a3.tar.bz2
[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
Diffstat (limited to 'src/H5Ocache.c')
-rw-r--r--src/H5Ocache.c2
1 files changed, 1 insertions, 1 deletions
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;