From 1c492dc0b6000168aea54bb082ce70d4e817daa7 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Tue, 6 Oct 2020 22:14:08 -0500 Subject: [PATCH] cosmetic cleanups. --- src/internal.c | 2 +- tests/api.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internal.c b/src/internal.c index c004304f2..39e80d94b 100644 --- a/src/internal.c +++ b/src/internal.c @@ -27689,7 +27689,7 @@ static int DoSessionTicket(WOLFSSL* ssl, const byte* input, word32* inOutIdx, WOLFSSL_LEAVE("DoClientHello", ret); WOLFSSL_END(WC_FUNC_CLIENT_HELLO_DO); - out: + out: #ifdef WOLFSSL_DTLS wc_HmacFree(&cookieHmac); diff --git a/tests/api.c b/tests/api.c index 641524d3f..866000ecb 100644 --- a/tests/api.c +++ b/tests/api.c @@ -13785,7 +13785,7 @@ static int test_wc_CheckProbablePrime (void) WC_RNG rng; byte e[3]; word32 eSz = (word32)sizeof(e); - byte n[CHECK_PROBABLE_PRIME_KEY_BITS / 8]; /* size of RSA_TEST_BYTES */ + byte n[CHECK_PROBABLE_PRIME_KEY_BITS / 8]; word32 nSz = (word32)sizeof(n); byte d[CHECK_PROBABLE_PRIME_KEY_BITS / 8]; word32 dSz = (word32)sizeof(d);