From 5f4e3bf536621675efd51020eb2950986b882e18 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 25 Jun 2016 06:46:47 +0000 Subject: [PATCH] gc: fix off-by-one error with gc.autoPackLimit This matches the documentation and allows gc.autoPackLimit=1 to maintain a single pack without attempting a repack on every "git gc --auto" invocation. Signed-off-by: Eric Wong Signed-off-by: Junio C Hamano --- builtin/gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/gc.c b/builtin/gc.c index 5c634afc0..15e278092 100644 --- a/builtin/gc.c +++ b/builtin/gc.c @@ -145,7 +145,7 @@ static int too_many_packs(void) */ cnt++; } - return gc_auto_pack_limit <= cnt; + return gc_auto_pack_limit < cnt; } static void add_repack_all_option(void) -- 2.11.0