summaryrefslogtreecommitdiffstats
path: root/doxygen
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2023-10-18 04:54:40 (GMT)
committerGitHub <noreply@github.com>2023-10-18 04:54:40 (GMT)
commit95572568191492f0d79924a55ea10453095a20c1 (patch)
tree5d4848b3a883d7703fccb2b92f1caae8d0c0d37c /doxygen
parentfc788559f7747eeefd152fc8c7844f45d3845300 (diff)
downloadhdf5-95572568191492f0d79924a55ea10453095a20c1.zip
hdf5-95572568191492f0d79924a55ea10453095a20c1.tar.gz
hdf5-95572568191492f0d79924a55ea10453095a20c1.tar.bz2
Sync changes that are only in 1.14 branch (#3704)
Diffstat (limited to 'doxygen')
-rw-r--r--doxygen/examples/H5D_examples.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doxygen/examples/H5D_examples.c b/doxygen/examples/H5D_examples.c
index ae483ee..1ad2794 100644
--- a/doxygen/examples/H5D_examples.c
+++ b/doxygen/examples/H5D_examples.c
@@ -10,7 +10,7 @@ int
chunk_cb(const hsize_t *offset, unsigned filter_mask, haddr_t addr, hsize_t size, void *op_data)
{
// only print the allocated chunk size only
- printf("%ld\n", size);
+ printf("%" PRIuHSIZE "\n", size);
return EXIT_SUCCESS;
}
//! <!-- [H5Dchunk_iter_cb] -->