summaryrefslogtreecommitdiffstats
path: root/src/H5FAtest.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-27 17:28:11 (GMT)
committerGitHub <noreply@github.com>2022-07-27 17:28:11 (GMT)
commita0a1959c58973095194f2d9ac5f9b13bb7b14fb4 (patch)
tree3f36cbd14d9ede9f00c4c26affb9ecab5d1a860f /src/H5FAtest.c
parentf0690f13fb914ff39a32d88801eabcef759a0163 (diff)
downloadhdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.zip
hdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.tar.gz
hdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.tar.bz2
clang 13 format #1933 (#1939)
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 b57f562..8d5733f 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