diff --git a/misc.h b/misc.h index 12d300e7..5ae39d13 100644 --- a/misc.h +++ b/misc.h @@ -2072,8 +2072,8 @@ void ByteReverse(T *out, const T *in, size_t byteCount) { // Alignment check due to Issues 690 CRYPTOPP_ASSERT(byteCount % sizeof(T) == 0); - CRYPTOPP_ASSERT(IsAligned(in)); - CRYPTOPP_ASSERT(IsAligned(out)); + CRYPTOPP_ASSERT(IsAligned(in)); + CRYPTOPP_ASSERT(IsAligned(out)); size_t count = byteCount/sizeof(T); for (size_t i=0; i