From: René Scharfe Date: Sat, 13 Mar 2021 16:17:37 +0000 (+0100) Subject: mem-pool: drop trailing semicolon from macro definition X-Git-Tag: v2.31.1~6^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=116affac3f9e3d92d633e6fd766e541c1c5b0765;p=thirdparty%2Fgit.git mem-pool: drop trailing semicolon from macro definition Allow BLOCK_GROWTH_SIZE to be used like an integer literal by removing the trailing semicolon from its definition. Also wrap the expression in parentheses, to allow it to be used with operators without leading to unexpected results. It doesn't matter for the current use site, but make it follow standard macro rules anyway to avoid future surprises. Signed-off-by: René Scharfe Signed-off-by: Junio C Hamano --- diff --git a/mem-pool.c b/mem-pool.c index 8401761dda..ccdcad2e3d 100644 --- a/mem-pool.c +++ b/mem-pool.c @@ -5,7 +5,7 @@ #include "cache.h" #include "mem-pool.h" -#define BLOCK_GROWTH_SIZE 1024*1024 - sizeof(struct mp_block); +#define BLOCK_GROWTH_SIZE (1024 * 1024 - sizeof(struct mp_block)) /* * Allocate a new mp_block and insert it after the block specified in