clang-format: realign declarations after aux refcounting refactor

This commit is contained in:
Scot Breitenfeld
2026-08-10 14:15:11 -05:00
parent 705a8e4e14
commit ea58bd33da
2 changed files with 10 additions and 10 deletions
+5 -5
View File
@@ -1415,11 +1415,11 @@ H5Z_append(H5O_pline_t *pline, H5Z_filter_t filter, unsigned flags, size_t cd_ne
} /* end if */
/* Add the new filter to the pipeline */
idx = pline->nused;
pline->filter[idx].id = filter;
pline->filter[idx].flags = flags;
pline->filter[idx].name = NULL; /*we'll pick it up later*/
pline->filter[idx].cd_nelmts = cd_nelmts;
idx = pline->nused;
pline->filter[idx].id = filter;
pline->filter[idx].flags = flags;
pline->filter[idx].name = NULL; /*we'll pick it up later*/
pline->filter[idx].cd_nelmts = cd_nelmts;
pline->filter[idx].config = NULL; /*set by H5Pappend_filter or pline decode*/
pline->filter[idx].aux = NULL; /*set by H5Pappend_filter_blob or pline decode*/
pline->filter[idx].aux_loc.addr = HADDR_UNDEF;
+5 -5
View File
@@ -60,11 +60,11 @@ typedef struct H5Z_filter_info_t H5Z_filter_info_t;
* the last reference is released (H5Z_blob_release). */
typedef struct H5Z_blob_buf_t {
void *data; /*blob bytes */
size_t size; /*byte length of data */
bool from_callback; /*data was allocated by the filter's read_blob
*callback and must be released via close_blob,
*not H5MM_xfree */
size_t nrefs; /*current reference count */
size_t size; /*byte length of data */
bool from_callback; /*data was allocated by the filter's read_blob
*callback and must be released via close_blob,
*not H5MM_xfree */
size_t nrefs; /*current reference count */
} H5Z_blob_buf_t;
/* Structure to store information about each filter's parameters */