From owner-svn-src-all@FreeBSD.ORG Thu May 17 10:19:49 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 D18F31065674; Thu, 17 May 2012 10:19:49 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B7D6D8FC20; Thu, 17 May 2012 10:19:49 +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 q4HAJnjI090630; Thu, 17 May 2012 10:19:49 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4HAJnYB090628; Thu, 17 May 2012 10:19:49 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201205171019.q4HAJnYB090628@svn.freebsd.org> From: Konstantin Belousov Date: Thu, 17 May 2012 10:19:49 +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: r235538 - head/sys/amd64/amd64 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, 17 May 2012 10:19:49 -0000 Author: kib Date: Thu May 17 10:19:49 2012 New Revision: 235538 URL: http://svn.freebsd.org/changeset/base/235538 Log: Fix typo. MFC after: 3 days Modified: head/sys/amd64/amd64/fpu.c Modified: head/sys/amd64/amd64/fpu.c ============================================================================== --- head/sys/amd64/amd64/fpu.c Thu May 17 10:11:18 2012 (r235537) +++ head/sys/amd64/amd64/fpu.c Thu May 17 10:19:49 2012 (r235538) @@ -141,7 +141,7 @@ CTASSERT(sizeof(struct savefpu_ymm) == 8 /* * This requirement is to make it easier for asm code to calculate * offset of the fpu save area from the pcb address. FPU save area - * must by 64-bytes aligned. + * must be 64-bytes aligned. */ CTASSERT(sizeof(struct pcb) % XSAVE_AREA_ALIGN == 0);