From ecaebf4af1212f8a74bc560a66c76c22e7c87131 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 7 Jan 2007 00:11:11 -0800 Subject: Spell default packedgitlimit slightly differently This is shorter and easier to read, and also makes sure the constant expression does not overflow integer range. Signed-off-by: Junio C Hamano --- git-compat-util.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'git-compat-util.h') diff --git a/git-compat-util.h b/git-compat-util.h index 55456da37..e023bf141 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -105,9 +105,7 @@ extern int git_munmap(void *start, size_t length); #endif /* NO_MMAP */ #define DEFAULT_PACKED_GIT_LIMIT \ - (sizeof(void*) >= 8 \ - ? 8 * 1024 * 1024 * 1024 \ - : 256 * 1024 * 1024) + ((1024L * 1024L) * (sizeof(void*) >= 8 ? 8192 : 256)) #ifdef NO_SETENV #define setenv gitsetenv -- cgit v1.2.1