diff options
author | David Young <dyoung@hdfgroup.org> | 2020-09-26 01:03:20 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-09-26 01:03:20 (GMT) |
commit | d20e1274a7bbf8ab1f87f3ebd61cea82ac8caf53 (patch) | |
tree | 1de1eb8728eb3fdb5c9f563148003176669d1586 /tools | |
parent | 5f0bb858131ae598bc6b68cc7bf5648a0c8c325e (diff) | |
download | hdf5-d20e1274a7bbf8ab1f87f3ebd61cea82ac8caf53.zip hdf5-d20e1274a7bbf8ab1f87f3ebd61cea82ac8caf53.tar.gz hdf5-d20e1274a7bbf8ab1f87f3ebd61cea82ac8caf53.tar.bz2 |
Repair more format strings.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/test/perform/perf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test/perform/perf.c b/tools/test/perform/perf.c index 364836f..5b78c52 100644 --- a/tools/test/perform/perf.c +++ b/tools/test/perform/perf.c @@ -317,7 +317,7 @@ int main(int argc, char **argv) VRFY((ret >= 0), "H5Dwrite dataset1 succeeded", !H5FATAL); - if (ret < 0) HDfprintf(stderr, "node %d, read error, loc = %Ld: %s\n", + if (ret < 0) HDfprintf(stderr, "node %d, read error, loc = %" PRId64 ": %s\n", mynod, mynod*opt_block, strerror(myerrno)); /* if the user wanted to check correctness, compare the write @@ -440,7 +440,7 @@ parse_args(int argc, char **argv) opt_threshold = (hsize_t)HDatoi(p + 1); } HDfprintf(stdout, - "alignment/threshold=%Hu/%Hu\n", + "alignment/threshold=%" PRIuHSIZE "/%" PRIuHSIZE "\n", opt_alignment, opt_threshold); break; case '2': /* use 2-files, i.e., split file driver */ |