From owner-svn-src-head@FreeBSD.ORG Thu May 12 18:01:16 2011 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8718106566B; Thu, 12 May 2011 18:01:16 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 506228FC12; Thu, 12 May 2011 18:01:14 +0000 (UTC) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id VAA02443; Thu, 12 May 2011 21:01:13 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost.topspin.kiev.ua ([127.0.0.1]) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1QKaCH-000Kev-DO; Thu, 12 May 2011 21:01:13 +0300 Message-ID: <4DCC2068.1080903@FreeBSD.org> Date: Thu, 12 May 2011 21:01:12 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.17) Gecko/20110503 Lightning/1.0b2 Thunderbird/3.1.10 MIME-Version: 1.0 To: Warner Losh References: <201105121702.p4CH2u1w045627@svn.freebsd.org> In-Reply-To: <201105121702.p4CH2u1w045627@svn.freebsd.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r221816 - head/usr.bin/fstat X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 May 2011 18:01:16 -0000 on 12/05/2011 20:02 Warner Losh said the following: > - printf(" %6lu", vn.vn_size); > + printf(" %6ju", (intmax_t)vn.vn_size); Just a nit - uintmax_t should be more appropriate here. Thank you for fixing this! > print_access_flags(fst->fs_fflags); > } -- Andriy Gapon