Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-24 20:20:02 +0300
committerJunio C Hamano <gitster@pobox.com>2017-08-24 20:20:02 +0300
commitd33a43323676e110b2ad78c9baa54ec424d40d6b (patch)
tree555a797278ae14639bc7a56641dc629b657949f8 /builtin/fsck.c
parent6ea13d88456c116b14c3bc756993b5f462c981cb (diff)
parent8aade107dd84dcaff3f23caae80a013878db2de7 (diff)
Merge branch 'jc/simplify-progress'
The API to start showing progress meter after a short delay has been simplified. * jc/simplify-progress: progress: simplify "delayed" progress API
Diffstat (limited to 'builtin/fsck.c')
-rw-r--r--builtin/fsck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/fsck.c b/builtin/fsck.c
index b0964a8d34..0ab13848a4 100644
--- a/builtin/fsck.c
+++ b/builtin/fsck.c
@@ -179,7 +179,7 @@ static int traverse_reachable(void)
unsigned int nr = 0;
int result = 0;
if (show_progress)
- progress = start_progress_delay(_("Checking connectivity"), 0, 0, 2);
+ progress = start_delayed_progress(_("Checking connectivity"), 0);
while (pending.nr) {
struct object_array_entry *entry;
struct object *obj;