Date: Fri, 12 Jul 2013 17:37:06 +0000 (UTC) From: Jens Schweikhardt <schweikh@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253277 - head/lib/libc/stdio Message-ID: <201307121737.r6CHb6Bx086892@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) &&
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307121737.r6CHb6Bx086892>