Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/unzip Fix output spacing for summary in -v.
details: https://anonhg.NetBSD.org/src/rev/bd8212fe2ed2
branches: trunk
changeset: 747152:bd8212fe2ed2
user: joerg <joerg%NetBSD.org@localhost>
date: Fri Sep 04 13:02:52 2009 +0000
description:
Fix output spacing for summary in -v.
diffstat:
usr.bin/unzip/unzip.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r e0d116cbc081 -r bd8212fe2ed2 usr.bin/unzip/unzip.c
--- a/usr.bin/unzip/unzip.c Fri Sep 04 12:27:09 2009 +0000
+++ b/usr.bin/unzip/unzip.c Fri Sep 04 13:02:52 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: unzip.c,v 1.4 2009/08/23 15:50:35 wiz Exp $ */
+/* $NetBSD: unzip.c,v 1.5 2009/09/04 13:02:52 joerg Exp $ */
/*-
* Copyright (c) 2009 Joerg Sonnenberger <joerg%NetBSD.org@localhost>
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: unzip.c,v 1.4 2009/08/23 15:50:35 wiz Exp $");
+__RCSID("$NetBSD: unzip.c,v 1.5 2009/09/04 13:02:52 joerg Exp $");
#include <sys/queue.h>
#include <sys/stat.h>
@@ -851,7 +851,7 @@
total_size, file_count, file_count != 1 ? "s" : "");
} else if (v_opt == 2) {
printf("-------- ------- --- -------\n");
- printf("%8ju %7ju 0%% %8ju file%s\n",
+ printf("%8ju %7ju 0%% %ju file%s\n",
total_size, total_size, file_count,
file_count != 1 ? "s" : "");
}
Home |
Main Index |
Thread Index |
Old Index