diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2023-10-13 16:31:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-13 16:31:50 (GMT) |
commit | eda1344a72d0f85e4532c504f1e9ecc025a87a21 (patch) | |
tree | 17c5d6b92635e462cc6a993b76dbb3b8b0ac2e12 /src/H5FDsubfiling | |
parent | 3ec119b5589bfed14ad8a2d242cfa0654b05eafc (diff) | |
download | hdf5-eda1344a72d0f85e4532c504f1e9ecc025a87a21.zip hdf5-eda1344a72d0f85e4532c504f1e9ecc025a87a21.tar.gz hdf5-eda1344a72d0f85e4532c504f1e9ecc025a87a21.tar.bz2 |
Remove clang warnings (#3656)
Diffstat (limited to 'src/H5FDsubfiling')
-rw-r--r-- | src/H5FDsubfiling/H5FDsubfiling.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDsubfiling/H5FDsubfiling.c b/src/H5FDsubfiling/H5FDsubfiling.c index d8616c8..a2daba0 100644 --- a/src/H5FDsubfiling/H5FDsubfiling.c +++ b/src/H5FDsubfiling/H5FDsubfiling.c @@ -1556,7 +1556,7 @@ H5FD__subfiling_read(H5FD_t *_file, H5FD_mem_t type, hid_t H5_ATTR_UNUSED dxpl_i H5_SUBFILING_GOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "addr undefined, addr = %" PRIuHADDR, addr); if (REGION_OVERFLOW(addr, size)) H5_SUBFILING_GOTO_ERROR(H5E_ARGS, H5E_OVERFLOW, FAIL, - "addr overflow, addr = %" PRIuHADDR ", size = %" PRIuHADDR, addr, size); + "addr overflow, addr = %" PRIuHADDR ", size = %zu", addr, size); /* Temporarily reject collective I/O until support is implemented (unless types are simple MPI_BYTE) */ { @@ -1789,7 +1789,7 @@ H5FD__subfiling_write(H5FD_t *_file, H5FD_mem_t type, hid_t H5_ATTR_UNUSED dxpl_ H5_SUBFILING_GOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "addr undefined, addr = %" PRIuHADDR, addr); if (REGION_OVERFLOW(addr, size)) H5_SUBFILING_GOTO_ERROR(H5E_ARGS, H5E_OVERFLOW, FAIL, - "addr overflow, addr = %" PRIuHADDR ", size = %" PRIuHADDR, addr, size); + "addr overflow, addr = %" PRIuHADDR ", size = %zu", addr, size); /* Temporarily reject collective I/O until support is implemented (unless types are simple MPI_BYTE) */ { |