From owner-svn-src-all@FreeBSD.ORG Mon Nov 19 15:57:55 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABB1CDA8; Mon, 19 Nov 2012 15:57:55 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 901458FC0C; Mon, 19 Nov 2012 15:57:55 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAJFvt3B091391; Mon, 19 Nov 2012 15:57:55 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAJFvtPT091390; Mon, 19 Nov 2012 15:57:55 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201211191557.qAJFvtPT091390@svn.freebsd.org> From: Ed Maste Date: Mon, 19 Nov 2012 15:57:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r243284 - stable/9/sys/geom/part X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 19 Nov 2012 15:57:55 -0000 Author: emaste Date: Mon Nov 19 15:57:55 2012 New Revision: 243284 URL: http://svnweb.freebsd.org/changeset/base/243284 Log: MFC r230990: Correct typo in comment (numbver) Modified: stable/9/sys/geom/part/g_part.c Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/geom/part/g_part.c ============================================================================== --- stable/9/sys/geom/part/g_part.c Mon Nov 19 15:31:07 2012 (r243283) +++ stable/9/sys/geom/part/g_part.c Mon Nov 19 15:57:55 2012 (r243284) @@ -221,7 +221,7 @@ g_part_geometry(struct g_part_table *tab continue; /* * Prefer a geometry with sectors > 1, but only if - * it doesn't bump down the numbver of heads to 1. + * it doesn't bump down the number of heads to 1. */ if (chs > bestchs || (chs == bestchs && heads > 1 && table->gpt_sectors == 1)) {