From owner-svn-src-all@FreeBSD.ORG Tue Feb 15 21:01:13 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 B9D43106566B; Tue, 15 Feb 2011 21:01:13 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A8E368FC18; Tue, 15 Feb 2011 21:01:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p1FL1DEO044264; Tue, 15 Feb 2011 21:01:13 GMT (envelope-from dim@svn.freebsd.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p1FL1D5Z044262; Tue, 15 Feb 2011 21:01:13 GMT (envelope-from dim@svn.freebsd.org) Message-Id: <201102152101.p1FL1D5Z044262@svn.freebsd.org> From: Dimitry Andric Date: Tue, 15 Feb 2011 21:01:13 +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: r218716 - head/sys/boot/common 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: Tue, 15 Feb 2011 21:01:13 -0000 Author: dim Date: Tue Feb 15 21:01:13 2011 New Revision: 218716 URL: http://svn.freebsd.org/changeset/base/218716 Log: In sys/boot/common/ufsread.c, use uint8_t instead of u_int8_t. Submitted by: mdf Modified: head/sys/boot/common/ufsread.c Modified: head/sys/boot/common/ufsread.c ============================================================================== --- head/sys/boot/common/ufsread.c Tue Feb 15 20:53:01 2011 (r218715) +++ head/sys/boot/common/ufsread.c Tue Feb 15 21:01:13 2011 (r218716) @@ -122,7 +122,7 @@ lookup(const char *path) const char *s; ino_t ino; ssize_t n; - u_int8_t dt; + uint8_t dt; ino = ROOTINO; dt = DT_DIR;