summaryrefslogtreecommitdiffstats
path: root/src/H5FDfamily.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-07-11 17:28:02 (GMT)
committerGitHub <noreply@github.com>2022-07-11 17:28:02 (GMT)
commite269f9036474b9d5b3c88d865e7bb20ecad5c54c (patch)
treeaa5313f198b044605d6b135cd4499cc2f91eacee /src/H5FDfamily.c
parent0412d3f292b255da700d865fd1eb990e05c038bb (diff)
downloadhdf5-e269f9036474b9d5b3c88d865e7bb20ecad5c54c.zip
hdf5-e269f9036474b9d5b3c88d865e7bb20ecad5c54c.tar.gz
hdf5-e269f9036474b9d5b3c88d865e7bb20ecad5c54c.tar.bz2
Misc clang warning fixes (#1869)
* Minor clang warning fixes in src and test * Fixes clang warnings in high-level library * clang format-nonliteral warning fixes * Committing clang-format changes * Fixed int -> float clang cast warnings in h5diff * Quiets some warnings in flex/bison generated code * Suppress overlong string warning for libinfo on clang Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/H5FDfamily.c')
-rw-r--r--src/H5FDfamily.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5FDfamily.c b/src/H5FDfamily.c
index fa4eb6f..e6ba5a7 100644
--- a/src/H5FDfamily.c
+++ b/src/H5FDfamily.c
@@ -1531,8 +1531,11 @@ H5FD__family_delete(const char *filename, hid_t fapl_id)
HGOTO_ERROR(H5E_VFL, H5E_CANTALLOC, FAIL, "unable to allocate temporary member name")
/* Sanity check to make sure that generated names are unique */
+ H5_GCC_CLANG_DIAG_OFF("format-nonliteral")
HDsnprintf(member_name, H5FD_FAM_MEMB_NAME_BUF_SIZE, filename, 0);
HDsnprintf(temp, H5FD_FAM_MEMB_NAME_BUF_SIZE, filename, 1);
+ H5_GCC_CLANG_DIAG_ON("format-nonliteral")
+
if (!HDstrcmp(member_name, temp)) {
if (default_config) {
temp = H5MM_xfree(temp);
@@ -1549,7 +1552,9 @@ H5FD__family_delete(const char *filename, hid_t fapl_id)
current_member = 0;
while (1) {
/* Fix up the filename with the current member's number */
+ H5_GCC_CLANG_DIAG_OFF("format-nonliteral")
HDsnprintf(member_name, H5FD_FAM_MEMB_NAME_BUF_SIZE, filename, current_member);
+ H5_GCC_CLANG_DIAG_ON("format-nonliteral")
/* Attempt to delete the member files. If the first file throws an error
* we always consider this an error. With subsequent member files, however,