From owner-svn-src-all@FreeBSD.ORG Thu May 12 19:10:01 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 43BCE106564A; Thu, 12 May 2011 19:10:01 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 302C38FC16; Thu, 12 May 2011 19:10:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p4CJA1U8048411; Thu, 12 May 2011 19:10:01 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p4CJA1WD048409; Thu, 12 May 2011 19:10:01 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201105121910.p4CJA1WD048409@svn.freebsd.org> From: Warner Losh Date: Thu, 12 May 2011 19:10:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r221819 - head/usr.bin/fstat X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 May 2011 19:10:01 -0000 Author: imp Date: Thu May 12 19:10:00 2011 New Revision: 221819 URL: http://svn.freebsd.org/changeset/base/221819 Log: uintmax_t is a better type here... Submitted by: avg@ Modified: head/usr.bin/fstat/fstat.c Modified: head/usr.bin/fstat/fstat.c ============================================================================== --- head/usr.bin/fstat/fstat.c Thu May 12 17:15:57 2011 (r221818) +++ head/usr.bin/fstat/fstat.c Thu May 12 19:10:00 2011 (r221819) @@ -462,7 +462,7 @@ print_vnode_info(struct procstat *procst printf(" %6s", vn.vn_devname); } } else - printf(" %6ju", (intmax_t)vn.vn_size); + printf(" %6ju", (uintmax_t)vn.vn_size); print_access_flags(fst->fs_fflags); }