summaryrefslogtreecommitdiffstats
path: root/HDF5Examples/C/H5T/h5ex_t_arrayatt.c
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2024-03-17 02:43:47 (GMT)
committerGitHub <noreply@github.com>2024-03-17 02:43:47 (GMT)
commita56675e12ad1090eb38d4d3cd8cf08a9af3c9f7f (patch)
tree7a7c9b2e493b9050a23f925de3ae87d4bc607597 /HDF5Examples/C/H5T/h5ex_t_arrayatt.c
parent68e8c0e62724b2a450e30f2becdcc9452ac0abb4 (diff)
downloadhdf5-a56675e12ad1090eb38d4d3cd8cf08a9af3c9f7f.zip
hdf5-a56675e12ad1090eb38d4d3cd8cf08a9af3c9f7f.tar.gz
hdf5-a56675e12ad1090eb38d4d3cd8cf08a9af3c9f7f.tar.bz2
Fix some minor warnings (#4165)
Diffstat (limited to 'HDF5Examples/C/H5T/h5ex_t_arrayatt.c')
-rw-r--r--HDF5Examples/C/H5T/h5ex_t_arrayatt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/HDF5Examples/C/H5T/h5ex_t_arrayatt.c b/HDF5Examples/C/H5T/h5ex_t_arrayatt.c
index a89f2b2..f071128 100644
--- a/HDF5Examples/C/H5T/h5ex_t_arrayatt.c
+++ b/HDF5Examples/C/H5T/h5ex_t_arrayatt.c
@@ -155,7 +155,7 @@ main(void)
* Output the data to the screen.
*/
for (i = 0; i < dims[0]; i++) {
- printf("%s[%llu]:\n", ATTRIBUTE, i);
+ printf("%s[%" PRIuHSIZE "]:\n", ATTRIBUTE, i);
for (j = 0; j < adims[0]; j++) {
printf(" [");
for (k = 0; k < adims[1]; k++)