diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2022-02-04 16:53:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 16:53:55 (GMT) |
commit | 36d9a165e428eb883f9fd72b6707555536292845 (patch) | |
tree | 61848a7a985725dcbb52daab3a986ff490cf909c /tools/src/h5perf | |
parent | 856de93673f2bd097b90e2803475ef4fc3d689fa (diff) | |
download | hdf5-36d9a165e428eb883f9fd72b6707555536292845.zip hdf5-36d9a165e428eb883f9fd72b6707555536292845.tar.gz hdf5-36d9a165e428eb883f9fd72b6707555536292845.tar.bz2 |
Fix a few issues noted by LGTM (#1421)
Diffstat (limited to 'tools/src/h5perf')
-rw-r--r-- | tools/src/h5perf/sio_perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/h5perf/sio_perf.c b/tools/src/h5perf/sio_perf.c index f245b92..87b9d65 100644 --- a/tools/src/h5perf/sio_perf.c +++ b/tools/src/h5perf/sio_perf.c @@ -277,7 +277,7 @@ run_test_loop(struct options *opts) } /* print size information */ - output_report("Transfer Buffer Size (bytes): %d\n", buf_bytes); + output_report("Transfer Buffer Size (bytes): %zu\n", buf_bytes); output_report("File Size(MB): %.2f\n", ((double)parms.num_bytes) / ONE_MB); print_indent(0); |