summaryrefslogtreecommitdiffstats
path: root/src/H5FSpkg.h
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/H5FSpkg.h
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/H5FSpkg.h')
-rw-r--r--src/H5FSpkg.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FSpkg.h b/src/H5FSpkg.h
index ba2cf03..d051fff 100644
--- a/src/H5FSpkg.h
+++ b/src/H5FSpkg.h
@@ -92,16 +92,16 @@
/* Callback info for loading a free space header into the cache */
typedef struct H5FS_hdr_cache_ud_t {
- H5F_t * f; /* File that free space header is within */
+ H5F_t *f; /* File that free space header is within */
uint16_t nclasses; /* Number of section classes */
const H5FS_section_class_t **classes; /* Array of section class info */
- void * cls_init_udata; /* Pointer to class init user data */
+ void *cls_init_udata; /* Pointer to class init user data */
haddr_t addr; /* Address of header */
} H5FS_hdr_cache_ud_t;
/* Callback info for loading free space section info into the cache */
typedef struct H5FS_sinfo_cache_ud_t {
- H5F_t * f; /* File that free space section info is within */
+ H5F_t *f; /* File that free space section info is within */
H5FS_t *fspace; /* free space manager */
} H5FS_sinfo_cache_ud_t;
@@ -139,7 +139,7 @@ typedef struct H5FS_sinfo_t {
unsigned sect_prefix_size; /* Size of the section serialization prefix (in bytes) */
unsigned sect_off_size; /* Size of a section offset (in bytes) */
unsigned sect_len_size; /* Size of a section length (in bytes) */
- H5FS_t * fspace; /* Pointer to free space manager that owns sections */
+ H5FS_t *fspace; /* Pointer to free space manager that owns sections */
/* Memory data structures (not stored directly) */
H5SL_t *merge_list; /* Skip list to hold sections for detecting merges */