diff options
author | Nicolas Pitre <nico@cam.org> | 2007-10-17 03:55:45 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-10-17 08:54:55 +0200 |
commit | 42e18fbf5f94dd6bd303bf702e030a29fa39d6c4 (patch) | |
tree | 5ecf0327f3b5a99e0fc37709aef674d56d825638 /unpack-trees.c | |
parent | git-svn: simplify the handling of fatal errors (diff) | |
download | git-42e18fbf5f94dd6bd303bf702e030a29fa39d6c4.tar.xz git-42e18fbf5f94dd6bd303bf702e030a29fa39d6c4.zip |
more compact progress display
Each progress can be on a single line instead of two.
[sp: Changed "Checking files out" to "Checking out files" at
Johannes Sixt's suggestion as it better explains the
action that is taking place]
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'unpack-trees.c')
-rw-r--r-- | unpack-trees.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unpack-trees.c b/unpack-trees.c index ccfeb6e245..32251018b2 100644 --- a/unpack-trees.c +++ b/unpack-trees.c @@ -307,8 +307,8 @@ static void check_updates(struct cache_entry **src, int nr, total++; } - start_progress_delay(&progress, "Checking %u files out...", - "", total, 50, 2); + start_progress_delay(&progress, "Checking out files", + total, 50, 2); cnt = 0; } |