summaryrefslogtreecommitdiffstats
path: root/src/H5Cmpio.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-09-26 01:03:20 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-09-26 01:03:20 (GMT)
commitd20e1274a7bbf8ab1f87f3ebd61cea82ac8caf53 (patch)
tree1de1eb8728eb3fdb5c9f563148003176669d1586 /src/H5Cmpio.c
parent5f0bb858131ae598bc6b68cc7bf5648a0c8c325e (diff)
downloadhdf5-d20e1274a7bbf8ab1f87f3ebd61cea82ac8caf53.zip
hdf5-d20e1274a7bbf8ab1f87f3ebd61cea82ac8caf53.tar.gz
hdf5-d20e1274a7bbf8ab1f87f3ebd61cea82ac8caf53.tar.bz2
Repair more format strings.
Diffstat (limited to 'src/H5Cmpio.c')
-rw-r--r--src/H5Cmpio.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/H5Cmpio.c b/src/H5Cmpio.c
index a4c295b..9171cf7 100644
--- a/src/H5Cmpio.c
+++ b/src/H5Cmpio.c
@@ -786,17 +786,16 @@ H5C_mark_entries_as_clean(H5F_t * f,
if(entry_ptr == NULL) {
#if H5C_DO_SANITY_CHECKS
HDfprintf(stdout,
- "H5C_mark_entries_as_clean: entry[%u] = %a not in cache.\n",
- u,
- addr);
+ "H5C_mark_entries_as_clean: entry[%u] = %" PRIuHADDR
+ " not in cache.\n", u, addr);
#endif /* H5C_DO_SANITY_CHECKS */
HGOTO_ERROR(H5E_CACHE, H5E_SYSTEM, FAIL, "Listed entry not in cache?!?!?")
} /* end if */
else if(!entry_ptr->is_dirty) {
#if H5C_DO_SANITY_CHECKS
HDfprintf(stdout,
- "H5C_mark_entries_as_clean: entry %a is not dirty!?!\n",
- addr);
+ "H5C_mark_entries_as_clean: entry %" PRIuHADDR
+ " is not dirty!?!\n", addr);
#endif /* H5C_DO_SANITY_CHECKS */
HGOTO_ERROR(H5E_CACHE, H5E_SYSTEM, FAIL, "Listed entry not dirty?!?!?")
} /* end else-if */