From owner-freebsd-current@FreeBSD.ORG Fri Nov 7 13:16:34 2008 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4166B1065672 for ; Fri, 7 Nov 2008 13:16:34 +0000 (UTC) (envelope-from keramida@freebsd.org) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id AA45F8FC19 for ; Fri, 7 Nov 2008 13:16:33 +0000 (UTC) (envelope-from keramida@freebsd.org) Received: from kobe.laptop (adsl202-73.kln.forthnet.gr [79.103.15.73]) (authenticated bits=128) by igloo.linux.gr (8.14.3/8.14.3/Debian-5) with ESMTP id mA7DGD4J010170 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 7 Nov 2008 15:16:21 +0200 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id mA7DGC40002740; Fri, 7 Nov 2008 15:16:12 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id mA7DGBWS002739; Fri, 7 Nov 2008 15:16:11 +0200 (EET) (envelope-from keramida@freebsd.org) From: Giorgos Keramidas To: Alex Keda References: <49135844.7010500@lissyara.su> <491358CD.4090601@lissyara.su> <87bpwsseof.fsf@kobe.laptop> <49140904.6080002@lissyara.su> Date: Fri, 07 Nov 2008 15:16:11 +0200 In-Reply-To: <49140904.6080002@lissyara.su> (Alex Keda's message of "Fri, 07 Nov 2008 12:23:16 +0300") Message-ID: <87k5bfk76s.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-MailScanner-ID: mA7DGD4J010170 X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.039, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.36, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@freebsd.org X-Spam-Status: No Cc: current@freebsd.org Subject: Re: Cannot buildworld in CURRENT X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2008 13:16:34 -0000 On Fri, 07 Nov 2008 12:23:16 +0300, Alex Keda wrote: >> Can you try this patch? >> >> %%% >> diff -r aa58af068624 usr.bin/du/du.c >> --- a/usr.bin/du/du.c Thu Nov 06 23:29:46 2008 +0200 >> +++ b/usr.bin/du/du.c Thu Nov 06 23:51:48 2008 +0200 >> @@ -273,7 +273,8 @@ >> (void)printf("\t%s\n", p->fts_path); >> } else { >> (void)printf("%jd\t%s\n", >> - howmany(p->fts_bignum * cblocksize, >> + (intmax_t)howmany( >> + p->fts_bignum * cblocksize, >> blocksize), p->fts_path); >> } >> } >> %%% > > another machine. Build success. Updated 2 hour ago... Thanks :) > You commit this patch? =) Max committed a fix in Subversion change 184742: : r184742 | mlaier | 2008-11-07 01:55:28 +0200 (Fri, 07 Nov 2008) | 2 lines : Changed paths: : M /head/usr.bin/du/du.c : : Restore (intmax_t) casts I lost during the last change & unbreak the build. : If you resync your source tree you will get the fix too :)