aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authorJens Schweikhardt <schweikh@FreeBSD.org>2013-07-12 17:37:05 +0000
committerJens Schweikhardt <schweikh@FreeBSD.org>2013-07-12 17:37:05 +0000
commitdb081af109f6a64a357c9c52a48a54ee61036178 (patch)
tree28ab4f28fd8a27df99721c23f604a7aafa54c57a /lib/libc/stdio
parent944d37b123fc4d85f41e0f1e48d0a5f93bed4b4d (diff)
downloadsrc-db081af109f6a64a357c9c52a48a54ee61036178.tar.gz
src-db081af109f6a64a357c9c52a48a54ee61036178.zip
Typo corrected.
Notes
Notes: svn path=/head/; revision=253277
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 707d362799d0..5b57fab0b9e1 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) &&