Skip to content

Commit

Permalink
Remove clang warnings (HDFGroup#3656)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee authored and brtnfld committed Oct 16, 2023
1 parent ad614f2 commit a21e2fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/H5FDsubfiling/H5FDsubfiling.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) */
{
Expand Down Expand Up @@ -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) */
{
Expand Down

0 comments on commit a21e2fa

Please sign in to comment.