From 7de9629e48435ccf2fdb1c8635234f309f32a967 Mon Sep 17 00:00:00 2001 From: Adam Moody Date: Fri, 11 Mar 2022 12:07:28 -0800 Subject: [PATCH] style: move count value to left of units --- src/scr_conf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scr_conf.h b/src/scr_conf.h index cf40c352..278b0d43 100644 --- a/src/scr_conf.h +++ b/src/scr_conf.h @@ -143,12 +143,12 @@ /* buffer size to use for MPI send / recv operations */ #ifndef SCR_MPI_BUF_SIZE -#define SCR_MPI_BUF_SIZE (1024*1024) +#define SCR_MPI_BUF_SIZE (1*1024*1024) #endif /* buffer size to use for file I/O operations */ #ifndef SCR_FILE_BUF_SIZE -#define SCR_FILE_BUF_SIZE (1024*1024*32) +#define SCR_FILE_BUF_SIZE (32*1024*1024) #endif /* whether file metadata should also be copied */