summaryrefslogtreecommitdiffstats
path: root/crypto/cryptlib.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-03-04 13:54:40 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-03-09 16:25:45 +1000
commit3e6a0d57389d7e5e45b06753692873e40dd125e9 (patch)
tree09b840d01e3e223627a0cf59a15a2672f721d7c9 /crypto/cryptlib.c
parent889ad4ef8181093d5c088d5518c7b353ddb48455 (diff)
Reword repeated words.
A trivial PR to remove some commonly repeated words. It looks like this is not the first PR to do this. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14420)
Diffstat (limited to 'crypto/cryptlib.c')
-rw-r--r--crypto/cryptlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index 7779ad05fe..fdefafc1fe 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -432,7 +432,7 @@ void OPENSSL_die(const char *message, const char *file, int line)
#if !defined(OPENSSL_CPUID_OBJ)
/*
- * The volatile is used to to ensure that the compiler generates code that reads
+ * The volatile is used to ensure that the compiler generates code that reads
* all values from the array and doesn't try to optimize this away. The standard
* doesn't actually require this behavior if the original data pointed to is
* not volatile, but compilers do this in practice anyway.