From owner-svn-src-head@FreeBSD.ORG Fri Jul 12 17:37:06 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5A3E43EE; Fri, 12 Jul 2013 17:37:06 +0000 (UTC) (envelope-from schweikh@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 4C823122A; Fri, 12 Jul 2013 17:37:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6CHb69K086893; Fri, 12 Jul 2013 17:37:06 GMT (envelope-from schweikh@svn.freebsd.org) Received: (from schweikh@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6CHb6Bx086892; Fri, 12 Jul 2013 17:37:06 GMT (envelope-from schweikh@svn.freebsd.org) Message-Id: <201307121737.r6CHb6Bx086892@svn.freebsd.org> From: Jens Schweikhardt Date: Fri, 12 Jul 2013 17:37:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253277 - head/lib/libc/stdio X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 12 Jul 2013 17:37:06 -0000 Author: schweikh Date: Fri Jul 12 17:37:05 2013 New Revision: 253277 URL: http://svnweb.freebsd.org/changeset/base/253277 Log: Typo corrected. Modified: head/lib/libc/stdio/fwrite.c Modified: head/lib/libc/stdio/fwrite.c ============================================================================== --- head/lib/libc/stdio/fwrite.c Fri Jul 12 17:22:59 2013 (r253276) +++ head/lib/libc/stdio/fwrite.c Fri Jul 12 17:37:05 2013 (r253277) @@ -65,7 +65,7 @@ fwrite(const void * __restrict buf, size /* * Check for integer overflow. As an optimization, first check that * at least one of {count, size} is at least 2^16, since if both - * values are less than that, their product can't possible overflow + * values are less than that, their product can't possibly overflow * (size_t is always at least 32 bits on FreeBSD). */ if (((count | size) > 0xFFFF) &&