From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5A0461384B4 for ; Sat, 28 Nov 2015 02:44:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCA9521C077; Sat, 28 Nov 2015 02:44:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 176BC21C08A for ; Sat, 28 Nov 2015 02:44:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2166034070A for ; Sat, 28 Nov 2015 02:44:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22B58F58 for ; Sat, 28 Nov 2015 02:44:35 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1448658940.13e441fc15740844749c1c9930f348d4aab53a8d.vapier@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: qcache.c X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 13e441fc15740844749c1c9930f348d4aab53a8d X-VCS-Branch: master Date: Sat, 28 Nov 2015 02:44:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ba8669ef-86d7-48af-b709-bfd792b1b895 X-Archives-Hash: 40ad6e95dc92649661cf4f8fd69f74a2 commit: 13e441fc15740844749c1c9930f348d4aab53a8d Author: Mike Frysinger gentoo org> AuthorDate: Fri Nov 27 21:15:40 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Nov 27 21:15:40 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=13e441fc qcache: print elapse time nicer qcache.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qcache.c b/qcache.c index 25f8651..0891918 100644 --- a/qcache.c +++ b/qcache.c @@ -735,7 +735,9 @@ void qcache_stats(qcache_data *data) printf("+%.*s+\n\n", (int)(arch_longest_len + 46), border); - printf("Completed in %s%d%s seconds.\n", BLUE, (int)(time(NULL)-runtime), NORM); + printf("Completed in "); + print_seconds_for_earthlings(time(NULL) - runtime); + printf("\n"); free(packages_stable); free(packages_testing);