diff options
author | schweikh <schweikh@FreeBSD.org> | 2013-07-12 17:37:05 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2013-07-12 17:37:05 +0000 |
commit | 1747a8a491c42a9a1dc9ddb01803c51366860a86 (patch) | |
tree | 28ab4f28fd8a27df99721c23f604a7aafa54c57a /lib/libc/stdio | |
parent | a51cca1f05abcf9214115613654c553126cd045f (diff) | |
download | FreeBSD-src-1747a8a491c42a9a1dc9ddb01803c51366860a86.zip FreeBSD-src-1747a8a491c42a9a1dc9ddb01803c51366860a86.tar.gz |
Typo corrected.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/fwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/fwrite.c b/lib/libc/stdio/fwrite.c index 707d362..5b57fab0 100644 --- a/lib/libc/stdio/fwrite.c +++ b/lib/libc/stdio/fwrite.c @@ -65,7 +65,7 @@ fwrite(const void * __restrict buf, size_t size, size_t count, FILE * __restrict /* * 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) && |