summaryrefslogtreecommitdiffstats
path: root/src/H5Rint.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/H5Rint.c
parentf0690f13fb914ff39a32d88801eabcef759a0163 (diff)
downloadhdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.zip
hdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.tar.gz
hdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.tar.bz2
clang 13 format #1933 (#1939)
Diffstat (limited to 'src/H5Rint.c')
-rw-r--r--src/H5Rint.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Rint.c b/src/H5Rint.c
index 09494ba..aa9e012 100644
--- a/src/H5Rint.c
+++ b/src/H5Rint.c
@@ -542,10 +542,10 @@ H5R__get_loc_id(const H5R_ref_priv_t *ref)
hid_t
H5R__reopen_file(H5R_ref_priv_t *ref, hid_t fapl_id)
{
- H5P_genplist_t * plist; /* Property list for FAPL */
- void * new_file = NULL; /* File object opened */
+ H5P_genplist_t *plist; /* Property list for FAPL */
+ void *new_file = NULL; /* File object opened */
H5VL_connector_prop_t connector_prop; /* Property for VOL connector ID & info */
- H5VL_object_t * vol_obj = NULL; /* VOL object for file */
+ H5VL_object_t *vol_obj = NULL; /* VOL object for file */
hbool_t supported; /* Whether 'post open' operation is supported by VOL connector */
hid_t ret_value = H5I_INVALID_HID;
@@ -1255,7 +1255,7 @@ H5R__decode_region(const unsigned char *buf, size_t *nbytes, H5S_t **space_ptr)
const uint8_t *p = (const uint8_t *)buf;
size_t buf_size = 0;
unsigned rank;
- H5S_t * space;
+ H5S_t *space;
herr_t ret_value = SUCCEED;
FUNC_ENTER_STATIC
@@ -1350,7 +1350,7 @@ H5R__decode_string(const unsigned char *buf, size_t *nbytes, char **string_ptr)
{
const uint8_t *p = (const uint8_t *)buf;
size_t string_len;
- char * string = NULL;
+ char *string = NULL;
herr_t ret_value = SUCCEED;
FUNC_ENTER_STATIC
@@ -1549,7 +1549,7 @@ H5R__decode_token_region_compat(H5F_t *f, const unsigned char *buf, size_t *nbyt
H5O_token_t token = {0};
size_t data_size;
const uint8_t *p;
- H5S_t * space = NULL;
+ H5S_t *space = NULL;
herr_t ret_value = SUCCEED;
FUNC_ENTER_PACKAGE