From 5217bbfd79b551300fc79fb95124634c8d1405f2 Mon Sep 17 00:00:00 2001 From: Scot Breitenfeld Date: Fri, 17 Jul 2026 08:52:35 -0500 Subject: [PATCH] clang-format: realign variable declarations after enc_size removal Leftover formatting drift from 46f05b50b21, which deleted enc_size and shortened the longest name in this declaration block, changing where clang-format aligns the '=' signs. --- testpar/t_filters_parallel.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testpar/t_filters_parallel.c b/testpar/t_filters_parallel.c index 2509c04473c..212cc349288 100644 --- a/testpar/t_filters_parallel.c +++ b/testpar/t_filters_parallel.c @@ -10370,10 +10370,10 @@ test_par_append_filter_blob(hid_t fapl_id) hsize_t dims[2] = {(hsize_t)(mpi_size * 4), 4}; hsize_t chunk[2] = {4, 4}; hsize_t start[2], count[2], block[2]; - C_DATATYPE *wbuf = NULL; - C_DATATYPE *rbuf = NULL; - unsigned char *blob = NULL; - void *enc_buf = NULL; + C_DATATYPE *wbuf = NULL; + C_DATATYPE *rbuf = NULL; + unsigned char *blob = NULL; + void *enc_buf = NULL; size_t nbytes; herr_t ret;