summaryrefslogtreecommitdiffstats
path: root/src/H5PB.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-10-17 18:16:34 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2019-10-17 18:17:06 (GMT)
commitfcd490a0bca6004364b5bdbf5483e194b25a998f (patch)
tree4aa801f3d10511096a42c6e6655779d3f4314fd4 /src/H5PB.c
parent8efc3d9757196b4c4ccef29c4a79ca7326f116da (diff)
downloadhdf5-fcd490a0bca6004364b5bdbf5483e194b25a998f.zip
hdf5-fcd490a0bca6004364b5bdbf5483e194b25a998f.tar.gz
hdf5-fcd490a0bca6004364b5bdbf5483e194b25a998f.tar.bz2
Use PRIuHADDR.
Diffstat (limited to 'src/H5PB.c')
-rw-r--r--src/H5PB.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5PB.c b/src/H5PB.c
index 8cabbcc..0a0e58a 100644
--- a/src/H5PB.c
+++ b/src/H5PB.c
@@ -2481,8 +2481,8 @@ H5PB__flush_entry(H5F_t *f, H5PB_t *pb_ptr, H5PB_entry_t *entry_ptr)
HDassert((pb_ptr->vfd_swmr_writer) || (!(entry_ptr->is_mpmde)));
HDassert(0 == entry_ptr->delay_write_until);
- ldbgf("%s: flushing %zu-byte page %" PRIu64 " @ %ju\n",
- __func__, entry_ptr->size, entry_ptr->page, (uintmax_t)entry_ptr->addr);
+ ldbgf("%s: flushing %zu-byte page %" PRIu64 " @ %" PRIuHADDR "\n",
+ __func__, entry_ptr->size, entry_ptr->page, entry_ptr->addr);
/* Retrieve the 'eoa' for the file */
if ( HADDR_UNDEF == (eoa = H5F_get_eoa(f, entry_ptr->mem_type)) )