From 531e6daa038c68ca8fd5a8b042907a618fb7722d Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Mon, 27 Apr 2009 09:44:58 +0200 Subject: [PATCH] prune-packed: advanced progress even for non-existing fan-out directories A progress indicator is used to count through the 256 object fan-out directories while unused object files are removed. (However, it becomes visible only if this process takes long enough.) Previously, display_progress() was only called if object files were actually removed. But if directories towards the end (fd/, fe/, ff/) did not exist, this could leave a strange line Removing duplicate objects: 99% (255/256), done. in the terminal instead of the expected "100% (256/256)". Signed-off-by: Johannes Sixt Signed-off-by: Junio C Hamano --- builtin-prune-packed.c | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin-prune-packed.c b/builtin-prune-packed.c index 2d5b2cd353..4942892e9f 100644 --- a/builtin-prune-packed.c +++ b/builtin-prune-packed.c @@ -55,6 +55,7 @@ void prune_packed_objects(int opts) for (i = 0; i < 256; i++) { DIR *d; + display_progress(progress, i + 1); sprintf(pathname + len, "%02x/", i); d = opendir(pathname); if (!d) -- 2.11.4.GIT