diff options
Diffstat (limited to 'src/lib/libcrypto/modes/ctr128.c')
-rw-r--r-- | src/lib/libcrypto/modes/ctr128.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/modes/ctr128.c b/src/lib/libcrypto/modes/ctr128.c index 96af854f8a..ab45e0bd7a 100644 --- a/src/lib/libcrypto/modes/ctr128.c +++ b/src/lib/libcrypto/modes/ctr128.c | |||
@@ -133,7 +133,7 @@ void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out, | |||
133 | n = (n+1) % 16; | 133 | n = (n+1) % 16; |
134 | } | 134 | } |
135 | 135 | ||
136 | #if defined(STRICT_ALIGNMENT) | 136 | #ifdef __STRICT_ALIGNMENT |
137 | if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) | 137 | if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) |
138 | break; | 138 | break; |
139 | #endif | 139 | #endif |