summaryrefslogtreecommitdiffstats
path: root/test/hyperslab.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-10-10 04:59:37 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-10-10 04:59:37 (GMT)
commitd282d8e8468cfd67172fe8b7db0786d9cdf33e03 (patch)
treedd795c0b640fb3e104850d932b69e009a534742d /test/hyperslab.c
parentb2e40065d1ad402b6cccd4180d9d61f0e570a17d (diff)
parentd4b1ee1d861686b97a887f47ff3857e338d3f690 (diff)
downloadhdf5-d282d8e8468cfd67172fe8b7db0786d9cdf33e03.zip
hdf5-d282d8e8468cfd67172fe8b7db0786d9cdf33e03.tar.gz
hdf5-d282d8e8468cfd67172fe8b7db0786d9cdf33e03.tar.bz2
Merge branch 'hdf5_1_12' of https://github.com/HDFGroup/hdf5 into hdf5_1_12
Diffstat (limited to 'test/hyperslab.c')
-rw-r--r--test/hyperslab.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/hyperslab.c b/test/hyperslab.c
index 4149721..43992de 100644
--- a/test/hyperslab.c
+++ b/test/hyperslab.c
@@ -11,7 +11,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Robb Matzke <matzke@llnl.gov>
+/* Programmer: Robb Matzke
* Friday, October 10, 1997
*
* Purpose: Hyperslab operations are rather complex, so this file
@@ -1117,8 +1117,8 @@ test_array_offset_n_calc(size_t n, size_t x, size_t y, size_t z)
/* Check computed coordinates */
for (v = 0; v < ARRAY_OFFSET_NDIMS; v++)
if (coords[v] != new_coords[v]) {
- HDfprintf(stderr, "coords[%u]=%Hu, new_coords[%u]=%Hu\n", (unsigned)v, coords[v], (unsigned)v,
- new_coords[v]);
+ HDfprintf(stderr, "coords[%zu]=%" PRIuHSIZE ", new_coords[%zu]=%" PRIuHSIZE "\n", v,
+ coords[v], v, new_coords[v]);
TEST_ERROR;
} /* end if */
} /* end for */