summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5trav.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2022-02-21 21:31:57 (GMT)
committerGitHub <noreply@github.com>2022-02-21 21:31:57 (GMT)
commitc302773438a4db0b56d32eaf9cf8a92b56848c0a (patch)
treec8be334db0a2f136ccfdacbadc3df0c1781a2628 /tools/lib/h5trav.c
parent705ba09e76d0bb4af88b7b7cde1f90c64c9e3753 (diff)
downloadhdf5-c302773438a4db0b56d32eaf9cf8a92b56848c0a.zip
hdf5-c302773438a4db0b56d32eaf9cf8a92b56848c0a.tar.gz
hdf5-c302773438a4db0b56d32eaf9cf8a92b56848c0a.tar.bz2
Sprinkle H5_ATTR_FORMAT over printf(3)-like functions in tools and fix issues (#1423)
* Correct some conversion specifications. * Replace many "%lld" occurrences with "%" PRIuHSIZE except for a few instances where PRIdHSIZE was appropriate. Remove a couple of casts and use correct format strings, instead. * Copy values from a possibly unaligned buffer to aligned local variables instead of casting and dereferencing pointers into the buffer. * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'tools/lib/h5trav.c')
-rw-r--r--tools/lib/h5trav.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/lib/h5trav.c b/tools/lib/h5trav.c
index 1f4b0d6..cca36e4 100644
--- a/tools/lib/h5trav.c
+++ b/tools/lib/h5trav.c
@@ -53,11 +53,6 @@ typedef struct trav_path_op_data_t {
const char *path;
} trav_path_op_data_t;
-/* format for hsize_t */
-#ifdef H5TRAV_PRINT_SPACE
-#define HSIZE_T_FORMAT "%" H5_PRINTF_LL_WIDTH "u"
-#endif /* H5TRAV_PRINT_SPACE */
-
/*-------------------------------------------------------------------------
* local functions
*-------------------------------------------------------------------------
@@ -856,7 +851,7 @@ trav_attr(hid_t
/* simple dataspace */
HDprintf(" {");
for (i = 0; i < ndims; i++) {
- HDprintf("%s" HSIZE_T_FORMAT, i ? ", " : "", size[i]);
+ HDprintf("%s%" PRIuHSIZE, i ? ", " : "", size[i]);
}
HDprintf("}\n");
break;