summaryrefslogtreecommitdiffstats
path: root/src/H5Pdapl.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/H5Pdapl.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/H5Pdapl.c')
-rw-r--r--src/H5Pdapl.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/H5Pdapl.c b/src/H5Pdapl.c
index a471640..37a3be8 100644
--- a/src/H5Pdapl.c
+++ b/src/H5Pdapl.c
@@ -315,7 +315,7 @@ static herr_t
H5P__dapl_vds_file_pref_enc(const void *value, void **_pp, size_t *size)
{
const char *vds_file_pref = *(const char *const *)value;
- uint8_t ** pp = (uint8_t **)_pp;
+ uint8_t **pp = (uint8_t **)_pp;
size_t len = 0;
uint64_t enc_value;
unsigned enc_size;
@@ -364,7 +364,7 @@ H5P__dapl_vds_file_pref_enc(const void *value, void **_pp, size_t *size)
static herr_t
H5P__dapl_vds_file_pref_dec(const void **_pp, void *_value)
{
- char ** vds_file_pref = (char **)_value;
+ char **vds_file_pref = (char **)_value;
const uint8_t **pp = (const uint8_t **)_pp;
size_t len;
uint64_t enc_value; /* Decoded property value */
@@ -555,7 +555,7 @@ static herr_t
H5P__dapl_efile_pref_enc(const void *value, void **_pp, size_t *size)
{
const char *efile_pref = *(const char *const *)value;
- uint8_t ** pp = (uint8_t **)_pp;
+ uint8_t **pp = (uint8_t **)_pp;
size_t len = 0;
uint64_t enc_value;
unsigned enc_size;
@@ -604,7 +604,7 @@ H5P__dapl_efile_pref_enc(const void *value, void **_pp, size_t *size)
static herr_t
H5P__dapl_efile_pref_dec(const void **_pp, void *_value)
{
- char ** efile_pref = (char **)_value;
+ char **efile_pref = (char **)_value;
const uint8_t **pp = (const uint8_t **)_pp;
size_t len;
uint64_t enc_value; /* Decoded property value */
@@ -919,7 +919,7 @@ H5P__encode_chunk_cache_nslots(const void *value, void **_pp, size_t *size)
static herr_t
H5P__decode_chunk_cache_nslots(const void **_pp, void *_value)
{
- size_t * value = (size_t *)_value; /* Property value to return */
+ size_t *value = (size_t *)_value; /* Property value to return */
const uint8_t **pp = (const uint8_t **)_pp;
uint64_t enc_value; /* Decoded property value */
unsigned enc_size; /* Size of encoded property */
@@ -1019,7 +1019,7 @@ H5P__encode_chunk_cache_nbytes(const void *value, void **_pp, size_t *size)
static herr_t
H5P__decode_chunk_cache_nbytes(const void **_pp, void *_value)
{
- size_t * value = (size_t *)_value; /* Property value to return */
+ size_t *value = (size_t *)_value; /* Property value to return */
const uint8_t **pp = (const uint8_t **)_pp;
uint64_t enc_value; /* Decoded property value */
unsigned enc_size; /* Size of encoded property */
@@ -1138,7 +1138,7 @@ static herr_t
H5P__dacc_vds_view_enc(const void *value, void **_pp, size_t *size)
{
const H5D_vds_view_t *view = (const H5D_vds_view_t *)value; /* Create local alias for values */
- uint8_t ** pp = (uint8_t **)_pp;
+ uint8_t **pp = (uint8_t **)_pp;
FUNC_ENTER_STATIC_NOERR
@@ -1286,7 +1286,7 @@ herr_t
H5Pset_append_flush(hid_t plist_id, unsigned ndims, const hsize_t *boundary, H5D_append_cb_t func,
void *udata)
{
- H5P_genplist_t * plist; /* Property list pointer */
+ H5P_genplist_t *plist; /* Property list pointer */
H5D_append_flush_t info; /* Property for append flush parameters */
unsigned u; /* Local index variable */
herr_t ret_value = SUCCEED; /* Return value */
@@ -1347,7 +1347,7 @@ done:
herr_t
H5Pget_append_flush(hid_t plist_id, unsigned ndims, hsize_t boundary[], H5D_append_cb_t *func, void **udata)
{
- H5P_genplist_t * plist; /* property list pointer */
+ H5P_genplist_t *plist; /* property list pointer */
H5D_append_flush_t info;
unsigned u; /* local index variable */
herr_t ret_value = SUCCEED; /* return value */
@@ -1431,7 +1431,7 @@ ssize_t
H5Pget_efile_prefix(hid_t plist_id, char *prefix, size_t size)
{
H5P_genplist_t *plist; /* Property list pointer */
- char * my_prefix; /* Library's copy of the prefix */
+ char *my_prefix; /* Library's copy of the prefix */
size_t len; /* Length of prefix string */
ssize_t ret_value; /* Return value */
@@ -1521,7 +1521,7 @@ ssize_t
H5Pget_virtual_prefix(hid_t plist_id, char *prefix, size_t size)
{
H5P_genplist_t *plist; /* Property list pointer */
- char * my_prefix; /* Library's copy of the prefix */
+ char *my_prefix; /* Library's copy of the prefix */
size_t len; /* Length of prefix string */
ssize_t ret_value; /* Return value */