diff options
author | Nicolas Pitre <nico@cam.org> | 2007-10-16 21:55:45 -0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-10-17 02:54:55 -0400 |
commit | 42e18fbf5f94dd6bd303bf702e030a29fa39d6c4 (patch) | |
tree | 5ecf0327f3b5a99e0fc37709aef674d56d825638 /builtin-unpack-objects.c | |
parent | 207f1a75e7e4d14286aeed107af7c56dc811797b (diff) | |
download | git-42e18fbf5f94dd6bd303bf702e030a29fa39d6c4.tar.gz |
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 'builtin-unpack-objects.c')
-rw-r--r-- | builtin-unpack-objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-unpack-objects.c b/builtin-unpack-objects.c index a6ff62fd8c..2317b8f411 100644 --- a/builtin-unpack-objects.c +++ b/builtin-unpack-objects.c @@ -322,7 +322,7 @@ static void unpack_all(void) use(sizeof(struct pack_header)); if (!quiet) - start_progress(&progress, "Unpacking %u objects...", "", nr_objects); + start_progress(&progress, "Unpacking objects", nr_objects); obj_list = xmalloc(nr_objects * sizeof(*obj_list)); for (i = 0; i < nr_objects; i++) { unpack_one(i); |