From a7ab98be690fb6f39a5802f7f605c9e773ee4275 Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Fri, 14 Sep 2018 11:02:23 +0200 Subject: [PATCH] Removed typo in the definition of macro FALL_THROUGH --- wolfssl/wolfcrypt/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/wolfcrypt/types.h b/wolfssl/wolfcrypt/types.h index 37a982bf8..4003ac71f 100644 --- a/wolfssl/wolfcrypt/types.h +++ b/wolfssl/wolfcrypt/types.h @@ -183,7 +183,7 @@ /* GCC 7 has new switch() fall-through detection */ #if defined(__GNUC__) #if ((__GNUC__ > 7) || ((__GNUC__ == 7) && (__GNUC_MINOR__ >= 1))) - #define FALL_THROUGH __attribute__ ((fallthrough)); + #define FALL_THROUGH __attribute__ ((fallthrough)) #endif #endif #ifndef FALL_THROUGH