summaryrefslogtreecommitdiffstats
path: root/src/H5FSpkg.h
diff options
context:
space:
mode:
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 */