summaryrefslogtreecommitdiffstats
path: root/src/H5FDvfd_swmr.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-02-05 18:08:01 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-02-06 20:14:34 (GMT)
commit4ffc6839e1b432e996f974dc3269e1fd2a48f2c0 (patch)
tree3bbdf487fbbd59215b9e7f42147923906f5149e5 /src/H5FDvfd_swmr.c
parentbc27f0d1ce31c4623a7b728be6638fba0d8a9b53 (diff)
downloadhdf5-4ffc6839e1b432e996f974dc3269e1fd2a48f2c0.zip
hdf5-4ffc6839e1b432e996f974dc3269e1fd2a48f2c0.tar.gz
hdf5-4ffc6839e1b432e996f974dc3269e1fd2a48f2c0.tar.bz2
Fix a typo in a diagnostic printf and, while I'm here, use the right format
strings.
Diffstat (limited to 'src/H5FDvfd_swmr.c')
-rw-r--r--src/H5FDvfd_swmr.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5FDvfd_swmr.c b/src/H5FDvfd_swmr.c
index 0e93633..fa4c2c8 100644
--- a/src/H5FDvfd_swmr.c
+++ b/src/H5FDvfd_swmr.c
@@ -726,13 +726,13 @@ H5FD_vfd_swmr_read(H5FD_t *_file, H5FD_mem_t type,
#if 0 /* JRM */
if ( cmp == 0 ) {
-
- HDfprintf(stderr, "vfd swrm read found target page/idx %lld/%d.\n",
- target_page, my_idx);
+ HDfprintf(stderr,
+ "vfd swmr read found target page/idx %" PRIu64 "/%d.\n",
+ target_page, my_idx);
} else {
- HDfprintf(stderr,
- "vfd swrm read passing through page / size = %lld/%lld\n",
- (uint64_t)target_page, (uint64_t)size);
+ HDfprintf(stderr,
+ "vfd swmr read passing through page / size = %" PRIu64 "/%zu\n",
+ target_page, size);
}
#endif /* JRM */
#else /* JRM */