diff options
author | Pauli <paul.dale@oracle.com> | 2019-02-13 00:22:36 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2019-02-13 00:22:36 +0100 |
commit | e5fee28f0e49fe2e07b2088985eee2d0ffaaf17e (patch) | |
tree | 50181bd7c363039b47979cc13c0b2a986ff4edc0 /crypto/sparse_array.c | |
parent | To use BN_BITS2, we'd better include openssl/bn.h (diff) | |
download | openssl-e5fee28f0e49fe2e07b2088985eee2d0ffaaf17e.tar.xz openssl-e5fee28f0e49fe2e07b2088985eee2d0ffaaf17e.zip |
Fix typo in comment
Reviewed-by: Paul Yang <yang.yang@baishancloud.com>
(Merged from https://github.com/openssl/openssl/pull/8218)
Diffstat (limited to 'crypto/sparse_array.c')
-rw-r--r-- | crypto/sparse_array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/sparse_array.c b/crypto/sparse_array.c index b256478358..9255f9da3f 100644 --- a/crypto/sparse_array.c +++ b/crypto/sparse_array.c @@ -44,7 +44,7 @@ /* * From the number of bits, work out: * the number of pointers in a tree node; - * a bit mask to quickly extra an index and + * a bit mask to quickly extract an index and * the maximum depth of the tree structure. */ #define SA_BLOCK_MAX (1 << OPENSSL_SA_BLOCK_BITS) |