summaryrefslogtreecommitdiffstats
path: root/src/H5FAtest.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-29 13:36:40 (GMT)
committerGitHub <noreply@github.com>2022-07-29 13:36:40 (GMT)
commit40fc2cca16cd562954d3b724fa56badb3b9da72b (patch)
tree536b4bb51328af98ead7dfa1951f36b47f9b752a /src/H5FAtest.c
parentc63dfb0fd3345ecb33014612f94d3959f147be03 (diff)
downloadhdf5-40fc2cca16cd562954d3b724fa56badb3b9da72b.zip
hdf5-40fc2cca16cd562954d3b724fa56badb3b9da72b.tar.gz
hdf5-40fc2cca16cd562954d3b724fa56badb3b9da72b.tar.bz2
1.10 clang 13 format #1933 (#1940)
* clang 13 format #1933 * Correct workflow
Diffstat (limited to 'src/H5FAtest.c')
-rw-r--r--src/H5FAtest.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5FAtest.c b/src/H5FAtest.c
index 384a657..04c2287 100644
--- a/src/H5FAtest.c
+++ b/src/H5FAtest.c
@@ -61,13 +61,13 @@ typedef struct H5FA__test_ctx_t {
/********************/
/* Fixed array class callbacks */
-static void * H5FA__test_crt_context(void *udata);
+static void *H5FA__test_crt_context(void *udata);
static herr_t H5FA__test_dst_context(void *ctx);
static herr_t H5FA__test_fill(void *nat_blk, size_t nelmts);
static herr_t H5FA__test_encode(void *raw, const void *elmt, size_t nelmts, void *ctx);
static herr_t H5FA__test_decode(const void *raw, void *elmt, size_t nelmts, void *ctx);
static herr_t H5FA__test_debug(FILE *stream, int indent, int fwidth, hsize_t idx, const void *elmt);
-static void * H5FA__test_crt_dbg_context(H5F_t *f, haddr_t obj_addr);
+static void *H5FA__test_crt_dbg_context(H5F_t *f, haddr_t obj_addr);
/*********************/
/* Package Variables */
@@ -116,7 +116,7 @@ static void *
H5FA__test_crt_context(void H5_ATTR_UNUSED *udata)
{
H5FA__test_ctx_t *ctx; /* Context for callbacks */
- void * ret_value = NULL;
+ void *ret_value = NULL;
FUNC_ENTER_STATIC
@@ -252,7 +252,7 @@ H5FA__test_decode(const void *_raw, void *_elmt, size_t nelmts, void H5_ATTR_UNU
#ifndef NDEBUG
H5FA__test_ctx_t *ctx = (H5FA__test_ctx_t *)_ctx; /* Callback context to destroy */
#endif
- uint64_t * elmt = (uint64_t *)_elmt; /* Convenience pointer to native elements */
+ uint64_t *elmt = (uint64_t *)_elmt; /* Convenience pointer to native elements */
const uint8_t *raw = (const uint8_t *)_raw; /* Convenience pointer to raw elements */
FUNC_ENTER_STATIC_NOERR
@@ -327,7 +327,7 @@ static void *
H5FA__test_crt_dbg_context(H5F_t H5_ATTR_UNUSED *f, haddr_t H5_ATTR_UNUSED obj_addr)
{
H5FA__test_ctx_t *ctx; /* Context for callbacks */
- void * ret_value = NULL;
+ void *ret_value = NULL;
FUNC_ENTER_STATIC