summaryrefslogtreecommitdiffstats
path: root/src/H5Fsuper_cache.c
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2012-01-04 16:46:15 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2012-01-04 16:46:15 (GMT)
commit86d0acc0c0f5c0c50dd634f6e23d4cae7b1debb1 (patch)
tree0ffd3d980dfa5923699d6f76cd455ed5f7359dc3 /src/H5Fsuper_cache.c
parent58b4cd319d391cc0aed704abffd2f2b89f0eb3a0 (diff)
parent7d0c15b7944577e94d02f7b4fb6a63977901adf0 (diff)
downloadhdf5-86d0acc0c0f5c0c50dd634f6e23d4cae7b1debb1.zip
hdf5-86d0acc0c0f5c0c50dd634f6e23d4cae7b1debb1.tar.gz
hdf5-86d0acc0c0f5c0c50dd634f6e23d4cae7b1debb1.tar.bz2
[svn-r21863] Description:
Merged r21409 through r21862 from trunk to avoid_truncate branch. Tested: h5committested
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 4117119..9feec6e 100644
--- a/src/H5Fsuper_cache.c
+++ b/src/H5Fsuper_cache.c
@@ -469,7 +469,7 @@ H5F_sblock_load(H5F_t *f, hid_t dxpl_id, haddr_t UNUSED addr, void *_udata)
eof = H5FD_get_eof(lf);
/* (Account for the stored EOF being absolute offset -QAK) */
if((eof + sblock->base_addr) < stored_eof)
- HGOTO_ERROR(H5E_FILE, H5E_TRUNCATED, NULL, "truncated file")
+ HGOTO_ERROR(H5E_FILE, H5E_TRUNCATED, NULL, "truncated file: eof = %llu, sblock->base_addr = %llu, stored_eof = %llu", (unsigned long long)eof, (unsigned long long)sblock->base_addr, (unsigned long long)stored_eof)
#ifdef H5_HAVE_PARALLEL
if (H5F_AVOID_TRUNCATE(f))