From commits-return-2399-apmail-stdcxx-commits-archive=stdcxx.apache.org@stdcxx.apache.org Fri Feb 08 23:14:52 2008 Return-Path: Delivered-To: apmail-stdcxx-commits-archive@www.apache.org Received: (qmail 5002 invoked from network); 8 Feb 2008 23:14:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Feb 2008 23:14:52 -0000 Received: (qmail 95967 invoked by uid 500); 8 Feb 2008 23:14:45 -0000 Delivered-To: apmail-stdcxx-commits-archive@stdcxx.apache.org Received: (qmail 95942 invoked by uid 500); 8 Feb 2008 23:14:45 -0000 Mailing-List: contact commits-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list commits@stdcxx.apache.org Received: (qmail 95933 invoked by uid 99); 8 Feb 2008 23:14:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Feb 2008 15:14:45 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Feb 2008 23:14:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 08B851A9832; Fri, 8 Feb 2008 15:14:30 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r620027 - /stdcxx/trunk/util/display.cpp Date: Fri, 08 Feb 2008 23:14:29 -0000 To: commits@stdcxx.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080208231430.08B851A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Fri Feb 8 15:14:22 2008 New Revision: 620027 URL: http://svn.apache.org/viewvc?rev=620027&view=rev Log: 2008-02-08 Martin Sebor * display.cpp (print_target_plain): Increased column width to so as to fit the longest test name (currently 35 characters). Modified: stdcxx/trunk/util/display.cpp Modified: stdcxx/trunk/util/display.cpp URL: http://svn.apache.org/viewvc/stdcxx/trunk/util/display.cpp?rev=620027&r1=620026&r2=620027&view=diff ============================================================================== --- stdcxx/trunk/util/display.cpp (original) +++ stdcxx/trunk/util/display.cpp Fri Feb 8 15:14:22 2008 @@ -144,7 +144,7 @@ assert (0 == defaults->verbose); - printf ("%-30.30s ", target_name); + printf ("%-40.40s ", target_name); /* flush to prevent killing a signal from not displaying the text */ fflush (stdout);