From: Nicolas Pitre Date: Thu, 1 Nov 2007 20:59:56 +0000 (-0400) Subject: make sure throughput display gets updated even if progress doesn't move X-Git-Tag: v1.5.4-rc0~286^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3e935d19822db08cc0dedd8764135771ffd6ec7b;p=git.git make sure throughput display gets updated even if progress doesn't move Currently the progress/throughput display update happens only through display_progress(). If the progress based on object count remains unchanged because a large object is being received, the latest throughput won't be displayed. The display update should occur through display_throughput() as well. Signed-off-by: Nicolas Pitre Signed-off-by: Junio C Hamano --- diff --git a/progress.c b/progress.c index 34a59611f..39d5d2c9f 100644 --- a/progress.c +++ b/progress.c @@ -160,6 +160,9 @@ void display_throughput(struct progress *progress, unsigned long n) tp->last_misecs[tp->idx] = misecs; tp->idx = (tp->idx + 1) % TP_IDX_MAX; tp->count = 0; + + if (progress->last_value != -1 && progress_update) + display(progress, progress->last_value, 0); } }