diff --git a/cyassl/ctaocrypt/integer.h b/cyassl/ctaocrypt/integer.h index 200072d19..fdad4773a 100644 --- a/cyassl/ctaocrypt/integer.h +++ b/cyassl/ctaocrypt/integer.h @@ -82,7 +82,7 @@ extern "C" { #ifdef MP_8BIT typedef unsigned char mp_digit; typedef unsigned short mp_word; -#elif (defined(MP_16BIT) || defined(NO_64BIT)) +#elif defined(MP_16BIT) || defined(NO_64BIT) typedef unsigned short mp_digit; typedef unsigned int mp_word; #elif defined(MP_64BIT) diff --git a/tests/suites.c b/tests/suites.c index e6925218a..053873779 100644 --- a/tests/suites.c +++ b/tests/suites.c @@ -44,7 +44,7 @@ CYASSL_CTX* cipherSuiteCtx = NULL; #ifdef NO_OLD_TLS -/* if the protcol versoin is less than tls 1.2 return 1, else 0 */ +/* if the protocol version is less than tls 1.2 return 1, else 0 */ static int IsOldTlsVersion(const char* line) { const char* find = "-v ";