svn commit: r253277 - head/lib/libc/stdio

Jens Schweikhardt schweikh at FreeBSD.org
Fri Jul 12 17:37:06 UTC 2013


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) &&


More information about the svn-src-head mailing list