summaryrefslogtreecommitdiffstats
path: root/src/H5FSsection.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-26 21:45:46 (GMT)
committerGitHub <noreply@github.com>2022-07-26 21:45:46 (GMT)
commitae414872f50187e64cbd6cc8f076c22cf5df2d53 (patch)
treeb616f33f5daa89f213e7c64e04c63afde906e939 /src/H5FSsection.c
parent213eac2588369f75a11df6bb1788dde33c4b82e2 (diff)
downloadhdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.zip
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.gz
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.bz2
Develop clang 13 format (#1933)
* Update format source to clang 13 * More format changes
Diffstat (limited to 'src/H5FSsection.c')
-rw-r--r--src/H5FSsection.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5FSsection.c b/src/H5FSsection.c
index 46aba93..9670719 100644
--- a/src/H5FSsection.c
+++ b/src/H5FSsection.c
@@ -47,9 +47,9 @@
/* User data for skip list iterator callback for iterating over section size nodes */
typedef struct {
- H5FS_t * fspace; /* Free space manager info */
+ H5FS_t *fspace; /* Free space manager info */
H5FS_operator_t op; /* Operator for the iteration */
- void * op_data; /* Information to pass to the operator */
+ void *op_data; /* Information to pass to the operator */
} H5FS_iter_ud_t;
/********************/
@@ -774,7 +774,7 @@ done:
static herr_t
H5FS__sect_unlink_size(H5FS_sinfo_t *sinfo, const H5FS_section_class_t *cls, H5FS_section_info_t *sect)
{
- H5FS_node_t * fspace_node; /* Free list size node */
+ H5FS_node_t *fspace_node; /* Free list size node */
H5FS_section_info_t *tmp_sect_node; /* Temporary section node */
unsigned bin; /* Bin to put the free space section in */
herr_t ret_value = SUCCEED; /* Return value */
@@ -1163,7 +1163,7 @@ H5FS__sect_merge(H5FS_t *fspace, H5FS_section_info_t **sect, void *op_data)
do {
H5SL_node_t *less_sect_node; /* Skip list node for section less than new section */
H5SL_node_t *greater_sect_node = NULL; /* Skip list node for section greater than new section */
- H5FS_section_info_t * tmp_sect; /* Temporary free space section */
+ H5FS_section_info_t *tmp_sect; /* Temporary free space section */
H5FS_section_class_t *tmp_sect_cls; /* Temporary section's class */
hbool_t greater_sect_node_valid = FALSE; /* Indicate if 'greater than' section node is valid */
@@ -1638,7 +1638,7 @@ H5FS__sect_find_node(H5FS_t *fspace, hsize_t request, H5FS_section_info_t **node
unsigned bin; /* Bin to put the free space section in */
htri_t ret_value = FALSE; /* Return value */
- H5SL_node_t * curr_size_node = NULL;
+ H5SL_node_t *curr_size_node = NULL;
const H5FS_section_class_t *cls; /* Class of section */
hsize_t alignment;
@@ -1845,7 +1845,7 @@ static herr_t
H5FS__iterate_sect_cb(void *_item, void H5_ATTR_UNUSED *key, void *_udata)
{
H5FS_section_info_t *sect_info = (H5FS_section_info_t *)_item; /* Free space section to work on */
- H5FS_iter_ud_t * udata = (H5FS_iter_ud_t *)_udata; /* Callback info */
+ H5FS_iter_ud_t *udata = (H5FS_iter_ud_t *)_udata; /* Callback info */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_PACKAGE
@@ -1879,7 +1879,7 @@ done:
static herr_t
H5FS__iterate_node_cb(void *_item, void H5_ATTR_UNUSED *key, void *_udata)
{
- H5FS_node_t * fspace_node = (H5FS_node_t *)_item; /* Free space size node to work on */
+ H5FS_node_t *fspace_node = (H5FS_node_t *)_item; /* Free space size node to work on */
H5FS_iter_ud_t *udata = (H5FS_iter_ud_t *)_udata; /* Callback info */
herr_t ret_value = SUCCEED; /* Return value */
@@ -2210,7 +2210,7 @@ H5FS__sect_assert(const H5FS_t *fspace)
size_ghost_count = 0;
while (curr_sect_node != NULL) {
H5FS_section_class_t *cls; /* Class of section */
- H5FS_section_info_t * sect; /* Section */
+ H5FS_section_info_t *sect; /* Section */
/* Get section node & it's class */
sect = (H5FS_section_info_t *)H5SL_item(curr_sect_node);
@@ -2317,7 +2317,7 @@ H5FS_sect_try_shrink_eoa(H5F_t *f, H5FS_t *fspace, void *op_data)
/* Check for last node in the merge list */
if (NULL != (last_node = H5SL_last(fspace->sinfo->merge_list))) {
- H5FS_section_info_t * tmp_sect; /* Temporary free space section */
+ H5FS_section_info_t *tmp_sect; /* Temporary free space section */
H5FS_section_class_t *tmp_sect_cls; /* Temporary section's class */
/* Get the pointer to the last section, from the last node */