summaryrefslogtreecommitdiffstats
path: root/src/H5Fsuper_cache.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-04-27 20:06:15 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-04-27 20:06:15 (GMT)
commit9542a0e21258dc9a6cddd2768312e66a4e9e2e12 (patch)
tree4b526763329c509ca81efe7384bfd79d2a286a25 /src/H5Fsuper_cache.c
parent451887585360c787dec42da3ffdb65c519e6ef02 (diff)
downloadhdf5-9542a0e21258dc9a6cddd2768312e66a4e9e2e12.zip
hdf5-9542a0e21258dc9a6cddd2768312e66a4e9e2e12.tar.gz
hdf5-9542a0e21258dc9a6cddd2768312e66a4e9e2e12.tar.bz2
[svn-r18639] Description:
Bring r18619:18638 from trunk to revise_chunks branch. Tested on: FreeBSD/32 6.3 (duty) w/debug (h5committest not required on this branch)
Diffstat (limited to 'src/H5Fsuper_cache.c')
-rw-r--r--src/H5Fsuper_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fsuper_cache.c b/src/H5Fsuper_cache.c
index 78cb3565..cb74322 100644
--- a/src/H5Fsuper_cache.c
+++ b/src/H5Fsuper_cache.c
@@ -763,7 +763,7 @@ H5F_sblock_flush(H5F_t *f, hid_t dxpl_id, hbool_t destroy, haddr_t UNUSED addr,
} /* end else */
/* Retrieve the total size of the superblock info */
- H5_ASSIGN_OVERFLOW(superblock_size, (p - buf), int, size_t);
+ H5_ASSIGN_OVERFLOW(superblock_size, (p - buf), ptrdiff_t, size_t);
/* Double check we didn't overrun the block (unlikely) */
HDassert(superblock_size <= sizeof(buf));