summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authorschweikh <schweikh@FreeBSD.org>2013-07-12 17:37:05 +0000
committerschweikh <schweikh@FreeBSD.org>2013-07-12 17:37:05 +0000
commit1747a8a491c42a9a1dc9ddb01803c51366860a86 (patch)
tree28ab4f28fd8a27df99721c23f604a7aafa54c57a /lib/libc/stdio
parenta51cca1f05abcf9214115613654c553126cd045f (diff)
downloadFreeBSD-src-1747a8a491c42a9a1dc9ddb01803c51366860a86.zip
FreeBSD-src-1747a8a491c42a9a1dc9ddb01803c51366860a86.tar.gz
Typo corrected.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/fwrite.c2
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) &&
OpenPOWER on IntegriCloud