From dcec2b123d8d13d6b6d512cda94424f07a47f2af Mon Sep 17 00:00:00 2001 From: aniket-modi <45540954+aniket-modi@users.noreply.github.com> Date: Sun, 5 Nov 2023 13:06:48 -0600 Subject: [PATCH] Remove extra whitespace --- commons/h5bench_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons/h5bench_util.c b/commons/h5bench_util.c index e9b5f4d6..53329e37 100644 --- a/commons/h5bench_util.c +++ b/commons/h5bench_util.c @@ -378,7 +378,7 @@ prepare_contig_memory(long particle_cnt, long dim_1, long dim_2, long dim_3) data_contig_md * prepare_contig_memory_multi_dim(unsigned long long dim_1, unsigned long long dim_2, unsigned long long dim_3) { - data_contig_md *buf_struct = (data_contig_md *)malloc(sizeof(data_contig_md)); + data_contig_md *buf_struct = (data_contig_md *)malloc(sizeof(data_contig_md)); buf_struct->dim_1 = dim_1; buf_struct->dim_2 = dim_2; buf_struct->dim_3 = dim_3;