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) && _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"