aboutsummaryrefslogtreecommitdiffstats
path: root/missing
diff options
context:
space:
mode:
Diffstat (limited to 'missing')
-rw-r--r--missing/explicit_bzero.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/missing/explicit_bzero.c b/missing/explicit_bzero.c
index db66eeeb9d..2409deca20 100644
--- a/missing/explicit_bzero.c
+++ b/missing/explicit_bzero.c
@@ -64,9 +64,9 @@ void
explicit_bzero(void *b, size_t len)
{
/*
- * volatile is not enough if compiler have a LTO (link time
+ * volatile is not enough if the compiler has an LTO (link time
* optimization). At least, the standard provides no guarantee.
- * However, gcc and major other compiler never optimize a volatile
+ * However, gcc and major other compilers never optimize a volatile
* variable away. So, using volatile is practically ok.
*/
volatile char* p = (volatile char*)b;